Hi,
I tried to write an aspect script which start a .bat dos program at the end but it's not working with windows NT.
I have try what's gete(below) send in a previous thread without any success. When i double clik on the .bat he is running fine!!!
Any help will be very appreciate!!!
thanks Dan
gete (TechnicalUser) May 12, 2001
You can use that (100% will work):
=======================================================
proc main
string CmdLine
integer x
strfmt CmdLine "C:\Mapi\sendmail.bat"
run CmdLine x
endproc
=======================================================
For CmdLine you can write any path you need.
x is a variable (you can use for other aplication but it must be here)
It should be work.
Use exactly in this form (included x variable)
Good luck,
Geo
I tried to write an aspect script which start a .bat dos program at the end but it's not working with windows NT.
I have try what's gete(below) send in a previous thread without any success. When i double clik on the .bat he is running fine!!!
Any help will be very appreciate!!!
thanks Dan
gete (TechnicalUser) May 12, 2001
You can use that (100% will work):
=======================================================
proc main
string CmdLine
integer x
strfmt CmdLine "C:\Mapi\sendmail.bat"
run CmdLine x
endproc
=======================================================
For CmdLine you can write any path you need.
x is a variable (you can use for other aplication but it must be here)
It should be work.
Use exactly in this form (included x variable)
Good luck,
Geo