Results 1 to 2 of 2
  1. #1
    glasgowlad1999 is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Feb 2011
    Posts
    14

    Question Floating Text Box

    Hi There,

    I have a number of sections that I want to put a more information about next to it.

    Is there a way to put a floating text box or click here to read more. That will not take them away from the page?

    Thanks

  2. #2
    TheShabz is offline Court Jester
    Windows XP Access 2003
    Join Date
    Feb 2010
    Posts
    1,368
    You can have a label that reads "More/Less Info" then under it have another label that has the information. in the OnClick event of the first label put into the VBA

    If Me.lblInfo.Visible = True Then
    Me.lblInfo.Visible = False
    Else Me.lblInfo.Visible = True
    End If

    What that does is everytime you click the first label, it turns off and on the information label.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 1
    Last Post: 11-05-2010, 04:31 PM
  2. How to vertically align text inside a text box ?
    By alexcalgary in forum Forms
    Replies: 2
    Last Post: 10-06-2010, 08:44 AM
  3. Replies: 15
    Last Post: 09-18-2010, 01:19 PM
  4. joining text in text boxes
    By jjwilliams73 in forum Forms
    Replies: 1
    Last Post: 08-26-2008, 02:30 PM
  5. Split text field into two text fields
    By Grant in forum Access
    Replies: 6
    Last Post: 01-31-2008, 05:52 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums