Adding a GUI to BATCH file?
Moderator: DosItHelp
-
- Posts: 54
- Joined: 10 Nov 2011 20:40
Adding a GUI to BATCH file?
Can you add GUI's to BATCH files? This might be a dumb question but I want my program to look nice. If there is please shed some light on my subject that would be great thank you.
Re: Adding a GUI to BATCH file?
'
Not natively, but since external commands are supported MSG.EXE which creates a messageBox can be called.
If you want a nice gui, you can program it in for example AutoIT3.
Then you can call it just like the messageBox.
Now don't think this is difficult, just download AutoIT3, and install and write it,
You will be shocked as you will find out AutoIT3 is x-times more powerfull than batch yet x-times easier.
Have fun
MyFirstAU3proggie.AU3
Not natively, but since external commands are supported MSG.EXE which creates a messageBox can be called.
If you want a nice gui, you can program it in for example AutoIT3.
Then you can call it just like the messageBox.
Now don't think this is difficult, just download AutoIT3, and install and write it,
You will be shocked as you will find out AutoIT3 is x-times more powerfull than batch yet x-times easier.
Have fun
Code: Select all
@echo off
Call MyFirstAU3proggie.EXE
pause
MyFirstAU3proggie.AU3
Code: Select all
MsgBox ( 0, 'Hello World', 'here I am !' )
-
- Posts: 54
- Joined: 10 Nov 2011 20:40
Re: Adding a GUI to BATCH file?
Sweet sounds good ill give it a try, thank you.
Re: Adding a GUI to BATCH file?
Ed Dyreen wrote:Not natively, but since external commands are supported MSG.EXE which creates a messageBox can be called.
You can program a GUI natively. By using HTA files, you can code literally any application you want. You just have to know either JScript or VBScript to go along with it.
Re: Adding a GUI to BATCH file?
'
whooptiddy
WBAT: Dialog boxes for DOS batch: menus, buttons, input fields, checkboxes, radio buttons, list selection
http://www.robvanderwoude.com/batchtools.php
rob's a popular guy, nice site too, so nice I am going to steal some of it.
whooptiddy
WBAT: Dialog boxes for DOS batch: menus, buttons, input fields, checkboxes, radio buttons, list selection
http://www.robvanderwoude.com/batchtools.php
rob's a popular guy, nice site too, so nice I am going to steal some of it.
Re: Adding a GUI to BATCH file?
Ed Dyreen wrote:'
whooptiddy
WBAT: Dialog boxes for DOS batch: menus, buttons, input fields, checkboxes, radio buttons, list selection
http://www.robvanderwoude.com/batchtools.php
rob's a popular guy, nice site too, so nice I am going to steal some of it.
Meh, I still would rather use HTA files, because I can do all of that natively.
Re: Adding a GUI to BATCH file?
'
Don't know about that, but I do know meh
Don't know about that, but I do know meh