How would I go about inserting, say a space, a return, and a tab into a textbox?
ec, after command1 is pressed, text1.text = [tab]/[space]/[return] & "hello"
just those 3 basic commands. any clue? thanks
Printable View
How would I go about inserting, say a space, a return, and a tab into a textbox?
ec, after command1 is pressed, text1.text = [tab]/[space]/[return] & "hello"
just those 3 basic commands. any clue? thanks
Me.txtBox.Text = vbTab & " " & vbCrLf & Me.txtBox.Text
Make sure it's a Multiline text box.