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 MouseUpevents 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()

 

Visual Basic example

 

Private Sub BarCodeWiz1_Click()

  BarCodeWiz1.ShowProperties 'Show the Properties Box of the control

End Sub