PDA

View Full Version : Solved: Wrap text in a VBA text box



qcoleman
10-12-2011, 08:11 AM
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.
Ver = Application.InputBox("Enter the Version 1)56 Report 2)57 Report 3)58 Report")

p45cal
10-12-2011, 08:32 AM
Ver = Application.InputBox("Enter the Version" & vbLf & "1)56 Report " & vbLf & "2)57 Report " & vbLf & "3)58 Report")

qcoleman
10-12-2011, 09:19 AM
It Works! Thanks for help p45cal. This helped me put the finishing touches on my code.