BarCodeWiz Logo

Click

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

Clicking a control generates MouseDown and MouseUp events in addition to the Click event. 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.

To distinguish between the left, right, and middle mouse buttons, use the MouseDown and MouseUp events


Syntax

BarCodeWiz1.Click()


VB Example

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