How to Enlarge msgbox on VBS?
Already tried below and it display the standard size.
MsgBox "This is a sample box", vbExclamation
Expect size is half or 1/4 of the screen to be covered by the msgbox
How to Enlarge msgbox on VBS?
Already tried below and it display the standard size.
MsgBox "This is a sample box", vbExclamation
Expect size is half or 1/4 of the screen to be covered by the msgbox
No, you can't.
MsgBox has the following parameters
MsgBox (prompt, [ buttons, ] [ title, ] [ helpfile, context ]) (source)
But it does grow with to accommodate the text passed as prompt
. So if you pass a large text it will be bigger.
Images except for the ones show for things like vbExclamation
are not possible either.