Friday, March 16, 2012

Make a project into an .exe

I have a project that I would like to make into an exe. This is in vb.net and I'm using VS.net 2003. I would like to call the project from a command line and pass a parameter to it. For instance...
myProj.exe /12354. When the project launches, it should accept the parameter and do something. How can I do this?

Thanks,You need to create a console application and get this:
http://www.codeproject.com/csharp/command_line.asp

then you can launch it with commandline arguments, and do something :)

0 comments:

Post a Comment