Help Files / Pop-up Box???

J

JJ

I have written quite a large project in VBA. Is there any way that one
can try and make it more user friendly by perhaps adding help files or
pop-up notes or something like that. I train the users what to click
and what to select but somehow they would like the program to tell them
what to do. I am lost for words :-(( Any suggestions?
 
J

Jezebel

You can associate a Help file with your project via VBA's Tools > [Project]
Properties. You can specify a topic within that file for any form or control
by setting the object's HelpContextID property. Having done that, F1 works
automatically to display the relevant topic.

You can also set the ControlTipText property for individual controls.
 
Top