Free Lessons
Courses
Seminars
TechHelp
Fast Tips
Templates
Topic Index
Forum
ABCD
 
Home   Courses   TechHelp   Forums   Help   Contact   Merch   Join   Order   Logon  
 
Back to Access Forum    Comments List
Upload Images   @Reply   Bookmark    Link   Email   Next Unseen 
Instructional Label Inside of Text Box or ComboBox
simon b 

12 years ago
Have not tried this with bound form fields but here is the example I used to test the code.

1. Create a form called InstructionF
2. Create 4 unbound text boxes called NameTxt, DateOfBirthTxt, AgeTxt, GenderTxt. Delete the labels.
3. Create a label on the form called InstructionLbl
4. In the forms onOpen Event place the following code.
DoCmd.GoToControl "NameTxt"
Me.InstructionLbl.Caption = "Enter Full Name"
5 Create a private sub In the form called ChangeUserInstructions
6 In the GotFocus Event of the 4 unbound text boxes call ChangeUserInstructions
7. Place the following code in the ChangeUserInstructions private sub

On Error Resume Next
    Dim Ctrl As Control
    
   Set Ctrl = Screen.ActiveControl

   If Ctrl.Name = "NameTxt" Then
        Me.InstructionLbl.Caption =   "Enter Full Name"
    End If
              
If Ctrl.Name = "DateOfBirthTxt" Then
            Me.InstructionLbl.Caption = "Enter Date Of Birth"
End If
    
If Ctrl.Name = "AgeTxt" Then
            Me.InstructionLbl.Caption = "Enter Age"
End If
    
If Ctrl.Name"GenderTxt" Then
          Me.InstructionLbl.Caption = "Enter Gender"
End If

This thread is now CLOSED. If you wish to comment, start a NEW discussion in Access Forum.
 

Next Unseen

 
New Feature: Comment Live View
 
 

The following is a paid advertisement
Computer Learning Zone is not responsible for any content shown or offers made by these ads.
 

Learn
 
Access - index
Excel - index
Word - index
Windows - index
PowerPoint - index
Photoshop - index
Visual Basic - index
ASP - index
Seminars
More...
Customers
 
Login
My Account
My Courses
Lost Password
Memberships
Student Databases
Change Email
Info
 
Latest News
New Releases
User Forums
Topic Glossary
Tips & Tricks
Search The Site
Code Vault
Collapse Menus
Help
 
Customer Support
Web Site Tour
FAQs
TechHelp
Consulting Services
About
 
Background
Testimonials
Jobs
Affiliate Program
Richard Rost
Free Lessons
Mailing List
PCResale.NET
Order
 
Video Tutorials
Handbooks
Memberships
Learning Connection
Idiot's Guide to Excel
Volume Discounts
Payment Info
Shipping
Terms of Sale
Contact
 
Contact Info
Support Policy
Mailing Address
Phone Number
Fax Number
Course Survey
Email Richard
[email protected]
Blog RSS Feed    YouTube Channel

LinkedIn
Copyright 2026 by Computer Learning Zone, Amicron, and Richard Rost. All Rights Reserved. Current Time: 5/16/2026 1:56:24 PM. PLT: 0s