Reputation: 5
How can I create a GUI program using batch programming. How can I program the mouse? I tried installing mouse.com file and the mouse worked in DOS. How to make such stuff using just batch or other programming languages.
Upvotes: 0
Views: 300
Reputation: 53
Besides using visual studio or other Windows GUI tool,
i'm not sure if this can be done from batch file directly.. :/
there seems to be no command for GUI in batch script..
so, in other words, Batch file cannot create GUI..
Maybe i'm wrong..
Upvotes: 0
Reputation: 6042
Using batch is totaly wrong for such tasks. You should take a look at AutoIt (https://www.autoitscript.com/site/). It's an easy to learn script language that can be compiled to exe files and allows you to work with GUI, simulate mouse and keyboard actions etc.
Upvotes: 1