So what I'm trying to achieve is to display help text in a TextBox everytime a new field is selected (or gains focus). I am working with Excel 2013 and my Form
has multiple tabs (multipage form).
So far here is what I know is possible: Everytime a field is selected, I can use one of the events (i.e. Click) to update the help text in help text box (just for info, help text is held on a worksheet and each field has a tag. I use this tag to pull the help text from the worksheet). What I cant figure out (or find on the web) is how to do this dynamically: so when a new field gets focus, maybe there is a form event I can use to get the ActiveControl
and pass it to my sub? (which pulls the help text).
I've tried using Myform.Click
(and Multipage.Click
) event but that doesn't work when I click on a new field or tab to a new field
Please let me know if I can provide more information
Help much appreciated