Click Event

Description

Occurs while mouse clicks the main color button.

Syntax

Sub ctlname_Click ()

Remarks

This event occurs when the user mouse clicks the control color button main body (left of extended button). User can handle self requirements in it.

Sample

Private Sub ColorChooser1_Click()

Picture1.BackColor = ColorChooser1.Value

End Sub