May 8, 2005 #1 Jofx Technical User Jan 12, 2005 16 FR I would like to get the name of a texbox after this textbox has been updated. something like: Sub textboxName_AfterUpdate() msgbox "The name of the updated textbox" end Thanks
I would like to get the name of a texbox after this textbox has been updated. something like: Sub textboxName_AfterUpdate() msgbox "The name of the updated textbox" end Thanks
May 8, 2005 #2 KenReay Programmer Aug 15, 2002 5,424 GB See .ActiveControl in help Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd Website needs upgrading, but for now - http://www.kenneth.reay.btinternet.co.ukUK Upvote 0 Downvote
See .ActiveControl in help Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd Website needs upgrading, but for now - http://www.kenneth.reay.btinternet.co.ukUK
May 8, 2005 Thread starter #3 Jofx Technical User Jan 12, 2005 16 FR Thanks Ken I've tried your tip but it doesn't work. The activecontrol gives the name of a multipage containing textboxes. Any other idea ? Upvote 0 Downvote
Thanks Ken I've tried your tip but it doesn't work. The activecontrol gives the name of a multipage containing textboxes. Any other idea ?
May 8, 2005 #4 PHV MIS Nov 8, 2002 53,708 FR Which ActiveControl have you tried ? Me.ActiveControl.Name or Screen.ActiveControl.Name ? Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
Which ActiveControl have you tried ? Me.ActiveControl.Name or Screen.ActiveControl.Name ? Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
May 8, 2005 Thread starter #5 Jofx Technical User Jan 12, 2005 16 FR I just tried : Sub textboxName_AfterUpdate() msgbox Me.activecontrol.name end --> MultiPage1 Upvote 0 Downvote