batch Programming
Reach me on my site My World-Ankit Saxena and give your feedback........
let us talk about Batch Programming
i will take a simple example to illustrate it.
Suppose you have to print MY WORLD on desktop
1.open notepad (text document)
2. write this command
like this
3.save this file with .bat extension . let save it with message.bat on desktop
4.you will see an icon like this ..
5. now double click it and you will see message box with message showing MY WORLD
like this ........
once you click ok it disappears .
you can also put it in a loop so that continuously this box appears like this
:loop
msg<space>*<space>MY WORLD
goto loop
you can also convert this .bat file into .exe file by using BAT TO EXE CONVERTER
enjoy...