Need help on double click event

Joined
Oct 11, 2011
Messages
1
Reaction score
0
Hello, I wonder if anyone can help me. I am stuck on it for almost 3 weeks.

I have a table "JobDatabase" (which include all details of each job position), a dataentry form, a Search form. In my Search form, I had a list box and a combo box (include all departments), where staff can pull down the menu and choose the department to see the job positions within that department. Then, the result will show on the list box. Here is my VB for that step:
Private Sub combo0_Click()
RefreshList
End Sub
Private sub RefreshList()
Dim sql As String
Dim selectedDeptID As Integer
selectedDeptID = Me.Combo0.Value
sql = "SELECt Jobdatabse.JobID, JobDatabase.JobPosition, JobDatabase.Dept FROM JobDatabase "_ & "WHERE JobDatabase.Dept = " & selectedDeptID _ & "ORDER BY JobDatabse.[JobPosition]"
Me.List2.RowSource = sql
End Sub
It worked good!

Now my next step is double click a selected item listed on the list box. If the staff double click one of the listed items, then a detail form (a form include all details of the selected jobposition) will pop out. I don't know what to do!!!!! Can anyone help me? Greatly appreciated.

Carol.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top