| View previous topic :: View next topic |
| Author |
Message |
wildboy
Joined: 11 Jun 2007 Posts: 7
|
Posted: Thu Jun 14, 2007 8:31 am Post subject: Popup |
|
|
Got it working..Perservierence (spelling, but you get it)
does anyone know how to hard code a pop-up (in a windows batch file)something like windows messenger box but without the messenger text, I believe this can be done with an array, but not too sure how to do it...
I guess it would be java or something, but is that even possible? This will run as a ghost application, so I can't use something like this: @echo Copy Complete! Because it's a ghost app, and I won't know when it's done.
Any help is appreciated!
Thanks. |
|
| Back to top |
|
 |
|
|
cola_frysen
Joined: 12 Oct 2007 Posts: 1
|
Posted: Fri Oct 12, 2007 5:54 pm Post subject: "msg" |
|
|
you should be able to use this command "msg"
msg is used like this (i dont know what OS i comes with)
| Code: | | msg %username% Copy Complete! |
and if you got the msg.exe file, you could include it in the compiled exe (i dont know if this is legal) then the code would look like this
| Code: | | %myfiles%\msg.exe %username% Copy Complete! |
hope i helped |
|
| Back to top |
|
 |
sKurt
Joined: 23 Jul 2007 Posts: 32
|
Posted: Sun Oct 14, 2007 6:28 am Post subject: msg |
|
|
That's a good way using what you already have. I'd do
msg * Copy Complete!
otherwise you may get an error message.
The better way is with Horst's wprompt. This way you can also do an errorlevel check and have it time out or automatically do something else at the end of a time out.
it's over at;
http://home.mnet-online.de/horst.muc/win.htm |
|
| Back to top |
|
 |
|