Control Tip

  • Thread starter Thread starter open a adobe file from a command button
  • Start date Start date
O

open a adobe file from a command button

I have a command button that I would like to show the content of a field when
you hover over it, like a control tip but the actual content of the field
(Yes or No)
 
On Tue, 17 Mar 2009 17:59:01 -0700,
I have a command button that I would like to show the content of a field when
you hover over it, like a control tip but the actual content of the field
(Yes or No)

Code that control's MouseMove event:
Me.[ContrtolName].ControlTipText = Me.[ControlName]
 
Back
Top