View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
Bill Oertell[_2_] Bill Oertell[_2_] is offline
external usenet poster
 
Posts: 18
Default MsgBox Justification

Thanks. At least that's better than experimenting with: MsgBox(" Hello")

"Shatin" wrote in message
...
or MsgBox Space(40) & "Hello"


Oops, just tried it and it would in fact make the text string right
justified. Should be something like:

MsgBox Space(20) & "Hello" & Space(20)