Click to See Complete Forum and Search --> : Closing/Exiting DOS windows visual basic 2008


Darc
June 24th, 2009, 09:04 PM
hi,

after running what i wanted in the DOS command prompt with:

System.Diagnostics.Process.Start("cmd.exe","/C C:\gds2asc.exe C:\temp.gds C:\temp.txt")


How do i exit or close the command prompt window?

Thanks a million for help.

dglienna
June 24th, 2009, 11:42 PM
Try this:

System.Diagnostics.Process.Start("C:\gds2asc.exe C:\temp.gds C:\temp.txt")

Darc
June 25th, 2009, 04:57 AM
Thanks!