Entry Tip

Kundan

Registered User.
Local time
Today, 11:23
Joined
Mar 23, 2019
Messages
118
Is it possible in Access 2013 to have an entry tip (like a tool tip) which will be displayed as soon as one enters a text field to enter data? The tip will inform what kind of data is required to be entered in the field.
 
Hi. You could try using the Format property of the Textbox to provide the info when the value is Null.
 
What I did was I reserved a "FieldHelp" text box on my forms. (I had the screen space for it.) For each data-entry or data-selection control, the "GotFocus" routine did something like

Code:
[FieldHelp] = "Enter the part number in nnn-nnnnn format."
   {OR}
[FieldHelp] = "Select the correct size from the drop-down list."
   {OR}
[FieldHelp] = "Check this box to indicate that the shipment requires special handling such as a FRAGILE tag."

In the corresponding "LostFocus" event I erased the box.
 
I do the same as the Doc but using a MouseMove event.
To clear the help message, I use an empty string in the MouseMove event for the form's Detail section
 
I blogged about something which might be of interest on my website here:-


Thanks. GOD BLESS YOU!!!!!!!!!!!!!!!!!!
 
I do the same as the Doc but using a MouseMove event.
To clear the help message, I use an empty string in the MouseMove event for the form's Detail section

Thanks. GOD BLESS YOU!!!!!!!!!!!!!!!!!!
 
What I did was I reserved a "FieldHelp" text box on my forms. (I had the screen space for it.) For each data-entry or data-selection control, the "GotFocus" routine did something like

Code:
[FieldHelp] = "Enter the part number in nnn-nnnnn format."
   {OR}
[FieldHelp] = "Select the correct size from the drop-down list."
   {OR}
[FieldHelp] = "Check this box to indicate that the shipment requires special handling such as a FRAGILE tag."

In the corresponding "LostFocus" event I erased the box.

Thanks. GOD BLESS YOU!!!!!!!!!!!!!!!!!!
 
I blogged about something which might be of interest on my website here:-


I am unable to locate the downloadable sample MS Access DB on the Access World Forum's website.
 
The Tip-Text for each text box can be saved in their Tag Property and display it in a Label Caption, in the footer/Header of the Form, on the GotFocus() Event:
Code:
Private Sub Units_GotFocus()
    Me.Label2.Caption = Units.Tag
End Sub
 
The Tip-Text for each text box can be saved in their Tag Property and display it in a Label Caption, in the footer/Header of the Form, on the GotFocus() Event:
Code:
Private Sub Units_GotFocus()
    Me.Label2.Caption = Units.Tag
End Sub

Thanks. Good idea. GOD BLESS YOU!!!!!!!!!!!
 

Users who are viewing this thread

Back
Top Bottom