Customised Tool Tip

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

Guest

Hi all!

I am developing an access application. I want to record which user has
changed which field and when on a form. I am storing this informaiton in a
field.

Since the space is limited, I want to display the name of user and time
stamp (of the user who edited that particular field) as a Tool Tip when
somebody moves the cursor over that particular field.

Could you give me a hint what to mention in the "Control Tool Tip" field, in
the field proprty.

Any help would be highly appreciated.

best regards
Avir
 
Avir said:
Hi all!

I am developing an access application. I want to record which user has
changed which field and when on a form. I am storing this informaiton
in a field.

Since the space is limited, I want to display the name of user and
time stamp (of the user who edited that particular field) as a Tool
Tip when somebody moves the cursor over that particular field.

Could you give me a hint what to mention in the "Control Tool Tip"
field, in the field proprty.

Any help would be highly appreciated.

best regards
Avir

In the Current event and the AfterUpdate event of the form you would need
code...

Me!TextBoxName.ControlTipText = Me!FieldName
 
it worked very well.

Many thanks Rick.

Rick Brandt said:
In the Current event and the AfterUpdate event of the form you would need
code...

Me!TextBoxName.ControlTipText = Me!FieldName
 

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

Back
Top