VBS How to make a Custom Option Button?

15,619

If you stick to VBScript only, you will not be able to create custom buttons. You can review the Function summary for MsgBox.

InputBox might give you the A, B, C options you're looking for but it would require the user to enter the letter and hit enter.

Otherwise, you can do a little trickery using IE as described here and here.

Share:
15,619
drcomputer
Author by

drcomputer

Updated on June 14, 2022

Comments

  • drcomputer
    drcomputer almost 2 years

    I would like to create a VB script that will have 3 buttons: A Day, B Day as C Day, and then have each button launch a batch file. I know how to make preset buttons (Yes, No, Abort, Retry etc.), but not custom. Any help would be greatly appreciated! Thanks.