msg box

n00b

New Member
Joined
Feb 17, 2002
Messages
18
how do i make it so the writing in a msg box appear in more then 2 lines

like ; line1
line2

and make them align in centre?
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Add a carriage return character (Chr(13)) between the lines:

Msgbox "Line1" & Chr(13) & "Line2".

I don't think it's possible to center the lines. You'll need to create a user form to do that.

Marc
 
Upvote 0
You can center the lines like this.

MsgBox " Line One" & vbcr & " Line Two"

Have a great day

(Leave spaces between the quote mark and the first word. I did but the post didn't show it)
This message was edited by GeorgeB on 2002-03-21 06:06
 
Upvote 0
Hi

Just what paelinck said with alittle more

"Message line one here" & chr(13) & _
"Message line two here" & chr(13) & _
" Ect... " & chr(13)

Notice Ect...

You can work with blank spaces to center
your message, but it's a pain.

If you know how, create a userform with
labels....
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,715
Members
448,985
Latest member
chocbudda

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top