Thread
:
MsgBox Justification
View Single Post
#
2
Posted to microsoft.public.excel.programming
JE McGimpsey
external usenet poster
Posts: 4,624
MsgBox Justification
AFAIK
, the only way is to add spaces to the beginning of the prompt.
You'll have to tweak the values:
MsgBox "Hello"
MsgBox String(40, " ") & "Hello"
In article ,
"Bill Oertell" wrote:
Is there any way to center the prompt in a MsgBox?
Reply With Quote
JE McGimpsey
View Public Profile
Find all posts by JE McGimpsey