
11-01-2003, 06:36 PM
|
|
Junior Contributor
|
|
Join Date: Apr 2003
Location: San Diego, CA
Posts: 301
|
|
Try creating a statc variable in your event handler and check it for a given state or value on entry. If it's in the 'active' state, then immediately exit the event handler.
Code:
Public Text1_Change()
Static Flag as Boolean
If Flag = True then
Exit Sub
End If
Flag = True
Your Code
Flag = False
End Sub
|
|