Consulting

Results 1 to 3 of 3

Thread: Solved: Wrap text in a VBA text box

  1. #1
    VBAX Regular
    Joined
    Feb 2011
    Posts
    26
    Location

    Solved: Wrap text in a VBA text box

    I have a input text box that i have some information for the user to read and i would like for it to wrap the text in the input text box, just to make things look cleaner.
    [vba]Ver = Application.InputBox("Enter the Version 1)56 Report 2)57 Report 3)58 Report")[/vba]

  2. #2
    Knowledge Base Approver VBAX Wizard p45cal's Avatar
    Joined
    Oct 2005
    Location
    Surrey UK
    Posts
    5,876
    [VBA]Ver = Application.InputBox("Enter the Version" & vbLf & "1)56 Report " & vbLf & "2)57 Report " & vbLf & "3)58 Report")
    [/VBA]
    p45cal
    Everyone: If I've helped and you can't be bothered to acknowledge it, I can't be bothered to look at further posts from you.

  3. #3
    VBAX Regular
    Joined
    Feb 2011
    Posts
    26
    Location

    Smile

    It Works! Thanks for help p45cal. This helped me put the finishing touches on my code.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •