ControlTip

N

Neil Cash

This is more than likely an unrealistic possibility, but I'd like to know
(just in case) if it's possible. Is there a way to put code on the event of
a control (combo box, check box, etc) preferably On Dirty, to display the
last date/time the control was edited in the ControlTip? Here's to hoping!
 
K

Ken Snell [MVP]

You can set the ControlTipText to whatever string you wish:

Me.ControlName.ControlTipText = "Put Your String Here"

You could do this on the form's Dirty event, for example. You will need to
have stored the date/time value somewhere so that you can go get it for the
above code step to use.

--

Ken Snell
<MS ACCESS MVP>

Neil Cash said:
This is more than likely an unrealistic possibility, but I'd like to know
(just in case) if it's possible. Is there a way to put code on the event of
a control (combo box, check box, etc) preferably On Dirty, to display the
last date/time the control was edited in the ControlTip? Here's to
hoping!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top