Msgbox

  • Thread starter Thread starter kennyken
  • Start date Start date
K

kennyken

Hi

I have a message box that pops up under certain conditions . At presen
the text on this box is on long line . Is it possible to start some o
the message on a new line where I specify

Thank
 
MsgBox "abc" & Chr(13) & "abc"

The chr(13) gives [enter] so starts the new line.

Dunca
 
And in case you did't know, you can add spaces to center the message if you
want. Something like this.

MsgBox " abc" & Chr(13) & " def"

HTH
Regards,
Howard
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top