
Help: textbox1_gotfocus event not firing!!!!!
I'm trying to figure out what is wrong with my code, when it occurred
to me that my gotfocus event doesn't seem to be firing.
** in form declaration **
pubic CurObj as object
public PrevObj as object
The code reads (shortversion):
private sub textbox1_gotfocus()
set PrevObj = CurObj
set CurObj = ActiveControl
msgbox "Hey, I'm here"
end sub
none of these get executed!!!!!
This function content is peppered throughout *every* textbox gotfocus
event.
What the heck am I missing???!!
Thanks in advance
Andrew