BarCodeWiz Logo

DblClick

DblClick event occurs when the user presses and then releases a mouse button twice over the BarCodeWiz ActiveX control.

When you're attaching event procedures for these related events, be sure that their actions don't conflict. If the order of events is important in your application, test the control to determine the event order.


Syntax

BarCodeWiz1.DblClick()


VB Example

Private Sub BarCodeWiz1_DblClick()
  BarCodeWiz1.ShowProperties 'Show the Properties Box of the control
End Sub