Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Way to output more than the maximum character limit in a msgbox?

Tags:

vbscript

I need to display a rather long message to the user in a msgbox. However there are instances where the msgbox seems to hit it's character limit. What's a solution to this?

like image 396
asdfasfd Avatar asked Feb 09 '23 09:02

asdfasfd


2 Answers

I used objShell.Popup to achieve this

Set objShell = CreateObject("Wscript.Shell")
    objShell.Popup messagehere
like image 77
asdfasfd Avatar answered May 13 '23 23:05

asdfasfd


use Wscript.Echo message instead of MsgBox message

like image 31
Zohaib Hamdulay Avatar answered May 14 '23 01:05

Zohaib Hamdulay