On Dbl Click ?

Rogue Programme

Registered User.
Local time
Today, 17:59
Joined
Jul 16, 2003
Messages
55
I want to be able to Dbl Click an employee in a list box that will then open that employees record on another form...

Does any know the On Dbl Click code i need to open the other form on that employees record?

I have a command button that will do this when the employee is selected from the list box however, i would rather the user had the option to double click from the list box aswell as the command button.

Mike
 
you could call the procedure behind the button click. I.e.
Code:
Private Sub YourListbox_DblClick(Cancel As Integer)
  Call YourButton_Click
End Sub
 
Thanks Nouba...

Worked Perfect!

Mike
 

Users who are viewing this thread

Back
Top Bottom