Advertising banner:
 
 
 A320
 
81203_43854_21.png 81203_43840_19.png


Event
Definition
Example
Change
Calls an event when the value of a field changes.
Sub Change()
...
End Sub
Click
Calls an event when the user clicks an unprotected field.
Sub Click()
...
End Sub
DoubleClick
Calls an event when the user double-clicks an unprotected field.
GotFocus
Makes a field active (receives focus), which triggers an event.
A field can receive focus by being clicked, being selected with the Tab key, or programmatically with the SetFocus method.
LostFocus
Makes a field inactive (loses focus), which triggers an event.
A field loses focus when another field gains the focus.


hirosue Shino Web Site