Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

disabling events

Status
Not open for further replies.

ngreenleaf

Programmer
Jan 13, 2003
24
US
I want to disable events such as Exit or Click while other event procedures are running. Basically in one even procedure I am updating information in the text boxes. When the user changes the data in the text box I want to run an event procedure, but when I set focus to them or change their contents I do not want the event to fire. Anyone know if this is possible?
 
apparently you can use:

txtboxname.OnExit=""

to turn it off, and

txtboxname.OnExit="[Event Procedure]"

to turn the event procedure back on.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top