|
-
Nov 6th, 2003, 09:48 AM
#1
Thread Starter
Junior Member
Carriage Return in MessageBox (RESOLVED)
Hello again
I want to build a MessageBox, which isn't the problem.
But how can I insert a carriage Return, so that the text looks like this:
This is my text,
isn't it cute?
and not like this:
This is my text, isn't it cute?
Thanks
And please excuse my English, I'm just a German
Last edited by Novice; Nov 6th, 2003 at 12:07 PM.
I know that I know nothing, therefore I know something.
-
Nov 6th, 2003, 10:52 AM
#2
There are a number of different characters that work as a carriage return. I like to use ControlChars.Newline but CrLf or Cr may fit the bill also.
Msgbox("This is my text," & ControlChars.Newline & "isn't it cute?")
-
Nov 6th, 2003, 11:24 AM
#3
-
Nov 6th, 2003, 12:04 PM
#4
Thread Starter
Junior Member
Thanks,
both solutions work fine.
I know that I know nothing, therefore I know something.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|