ControlTip

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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!
 
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!
 
Back
Top