Pop Up Message on Combo Box

NEEDHELP123

Registered User.
Local time
Yesterday, 19:37
Joined
Jun 5, 2006
Messages
23
Does anyone know how to create a pop up message when you click on a combo box in form?
 
NEEDHELP123 said:
Does anyone know how to create a pop up message when you click on a combo box in form?

What kind of pop up message? A tool tip or an actual message box.

If you want an actual message box, place a sub routine on the click event of that combo box.

exp.

msgbox("Put message here")

I guess that is what you are looking for.
 
NEEDHELP123 said:
Does anyone know how to create a pop up message when you click on a combo box in form?
Why are you trying to annoy your users? Have a label displayed when the combo box has the focus if you need to notify the user with some important tip. Better than a tool tip if the info is really important.
 

Users who are viewing this thread

Back
Top Bottom