I need to show in ControlTip Text filtered result from three table fields.
How to do that?
Help!!!
Asked elsewhere. It may have been already answered elsewhere but how
would anyone reading this message know?
Please do not multi-post. If you feel you must post the same question
to more than one newsgroup (and it's seldom necessary), crosspost by
adding each additional newsgroup in the To Newsgroups: box, separated
by a comma.
This way an answer in one newsgroup will be seen in each of the
others. More readers will see the response and learn, and less time
will be spent on duplicate answers.
See Netiquette at
http://www.mvps.org/access
It's a great site to visit anyway.
Your message asks a 'How to' question but you give no specific
information of what you want the ControlTipText to say, so it's
difficult to tailor my reply to your needs.
You can use that control's MouseMove event:
Me.[ControlName].ControlTipText = "The value of ControlB is " &
[ControlB]
You'll have to adapt this to your specific purpose.