On Dbl Click ? (1 Viewer)

Rogue Programme

Registered User.
Local time
Today, 12:21
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
 

Nouba

Registered User.
Local time
Today, 13:21
you could call the procedure behind the button click. I.e.
Code:
Private Sub YourListbox_DblClick(Cancel As Integer)
  Call YourButton_Click
End Sub
 

Users who are viewing this thread

Top Bottom