Vbs msgbox. How to create custom buttons?

Ok, I'm trying to make a small rpg as a small project in vbs. What I need is an msgbox with 5 buttons: attack, skins, magic, launch, help.

My knowledge of vbscript is very minimal, so you might need to explain.

0
source share
1 answer

You cannot easily do this with VBScript. (It would be nice if you could do something like choice = MsgBox("Please select my next action", array("attack", "skills", "magic", "run", "take", "help"))).

But you can do a good old hack-create-a-IE-instance-with-choice-hack. You can find examples and explanations of the Scripting Guys Blog or on the Rob van der Voude website .

: HTML- VBScript, HTA. , , , VBScript , .

+5

All Articles