VBS How to create a custom option button?

I would like to create a VB script that will have 3 buttons: day, day B as day C, and then each button launches a batch file. I know how to make predefined buttons (Yes, No, Cancel, Repeat, etc.), but not ordinary. Any help would be greatly appreciated! Thank.

+3
source share
1 answer

If you stick only to VBScript, you cannot create custom buttons. You can view a summary of the features for MsgBox .

The InputBox can give you the options A, B, C that you need, but this requires the user to enter a letter and press enter.

IE, .

+4

All Articles