Bound Object Frame Control, Chart Control, Check Box Control, Combo Box Control, Command Button Control, Form, Form Section, Image Control, Label Control, List Box Control, Option Button Control, Option Group Control, Rectangle Control, Text Box Control, Toggle Button Control, Unbound Object Frame Control.
These events occur:
Note Notes
You can use a MouseDown or MouseUp event to specify what happens when a particular mouse button is pressed or released. Unlike the Click and DblClick events, the MouseDown and MouseUp events enable you to distinguish between the left, right, and middle mouse buttons. You can also write code for mouse-keyboard combinations that use the SHIFT, CTRL, and ALT keys.
To cause a MouseDown or MouseUp event for a form to occur, press the mouse button in a blank area, record selector, or scroll bar on the form. To cause a MouseDown or MouseUp event for a form section to occur, press the mouse button in a blank area of the form section after selecting the section. To select the form section, click the section header.
The following apply to both MouseDown and MouseUp events:
To respond to an event caused by moving the mouse, you use a MouseMove event.
Click Event; DblClick Event; Enter, Exit Events; GotFocus, LostFocus Events; MouseMove Event.