convert windows application to run using command line
-
so that it is automated. I am running an application which requests 3 parameters. Want to conver this to run automatically. I cannot set it up in the "scheduler" since it has 3 input parameters that needs to be considered. I am using VS2005/ASP.NET2.0 - is there a way to convert this windows application into an automatic service? Thanks so much for your time.
-
so that it is automated. I am running an application which requests 3 parameters. Want to conver this to run automatically. I cannot set it up in the "scheduler" since it has 3 input parameters that needs to be considered. I am using VS2005/ASP.NET2.0 - is there a way to convert this windows application into an automatic service? Thanks so much for your time.
VK-Cadec wrote:
ASP.NET2.0
VK-Cadec wrote:
windows application
Something is wrong with this picture.... You can't just convert an app into a service, you have to build a service and copy your code into it.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
VK-Cadec wrote:
ASP.NET2.0
VK-Cadec wrote:
windows application
Something is wrong with this picture.... You can't just convert an app into a service, you have to build a service and copy your code into it.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
I want to convert my app to run from command line. Then would be probably use the scheduler to set when to run this app. It has three input parameters which the user can set the first time he runs the app., then want to put this app into scheduler? Would this plan work? Thanks.
-
I want to convert my app to run from command line. Then would be probably use the scheduler to set when to run this app. It has three input parameters which the user can set the first time he runs the app., then want to put this app into scheduler? Would this plan work? Thanks.
VK-Cadec wrote:
I want to convert my app to run from command line.
Any application can be run from the command line. Do you mean you want it to be a Console Application and output to the console you ran it from? Do you mean you want it to run as a Windows Forms Application and just take some command line arguments? If you do just want to use command line arguments did you bother to google[^]?