You are not running the query. You should set the recordsource of your form to the sql if you want the data to fill into fields.
Me.RecordSource = "SELECT Description_Of_Problem, Other, Etc FROM Work_Orders"
The above will only work if you have controls bound to fields, but it is the easiest way to populate a lot of controls.
The best way to start is to create a form based on Work_Orders using the form wizard. You can then avoid any coding at all by creating a combobox to select records on your form. The user can then select a ticket and jump to that record. There is a wizard for that, too.
Dim rs As DAO.Recordset
ticNum = Me.Work_Order_List.Value
strSQL = "SELECT Description_Of_Problem FROM Work_Orders WHERE Ticket_Number =" _
& ticNum
Debug.Print strSQL
Set rs = CurrentDB.OpenRecordset strSQL
Me.Notes = rs!Description_Of_Problem
Binding a form
Start the form wizard based on a table or query

Follow through the steps to end up with a form in design view

There are a number of ways to navigate through the records, you seem to like the listbox. Add a list box making sure that the wizard is selected.

Choose to find records on the current form

And select the items to appear in the listbox

Select an item to find it on the form.

This is what makes it a bound form, the record source, which can be a table name, a query name or an SQL statement. Note that the control to be filled in automatically are bound to field names, but the listbox to find records is marked 'unbound'.
