Opening windows application from a web application
-
Hi, I am trying to open a windows application by this code Process test = new Process(); test.StartInfo.FileName = "C:\\Program Files\\PakInc\\SupnaBurnCDSetup\\CSharpDemo.exe"; test.Start(); windows application is executed but it didn't work properly. Can anybody help me. Thanks
-
Hi, I am trying to open a windows application by this code Process test = new Process(); test.StartInfo.FileName = "C:\\Program Files\\PakInc\\SupnaBurnCDSetup\\CSharpDemo.exe"; test.Start(); windows application is executed but it didn't work properly. Can anybody help me. Thanks
arslanjatt wrote:
Process test = new Process(); test.StartInfo.FileName = "C:\\Program Files\\PakInc\\SupnaBurnCDSetup\\CSharpDemo.exe"; test.Start();
Process.Start(fileName)
will doarslanjatt wrote:
windows application is executed but it didn't work properly.
Which didn't worked properly ? Windows application or the website ?
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
arslanjatt wrote:
Process test = new Process(); test.StartInfo.FileName = "C:\\Program Files\\PakInc\\SupnaBurnCDSetup\\CSharpDemo.exe"; test.Start();
Process.Start(fileName)
will doarslanjatt wrote:
windows application is executed but it didn't work properly.
Which didn't worked properly ? Windows application or the website ?
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
Windows application didn't work properly. Act. it is a demo aopplication to burn the cd. windows application is not installed on server not on client.
-
Windows application didn't work properly. Act. it is a demo aopplication to burn the cd. windows application is not installed on server not on client.
Sorry i mean to sya windows application is installed on Web Server not on client. It communicate with the Local System. I can open a NOTEPAD.EXE properly and it work properly also. But, CSharpDemo.exe doesn't work properly.
-
Windows application didn't work properly. Act. it is a demo aopplication to burn the cd. windows application is not installed on server not on client.
arslanjatt wrote:
Windows application didn't work properly
What is the error it is showing ? Is all prerequisites for .NET application installed on the machine ?
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
arslanjatt wrote:
Windows application didn't work properly
What is the error it is showing ? Is all prerequisites for .NET application installed on the machine ?
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
Let me tell you in detail. What windows application does is to burn a cd by using NeroCommand.exe which is in the folder of C:\Program Files\Ahead\Nero\NeroCommand.exe. There is an object of ZylBurner.Burner class. It gets the NeroCommand.exe path by burner.GetNeroCommand(). When i run the application from the exe on local system it works properly and when i run it with the help of process it opened but didn't work properly. i mean to say not get the path of nerocommand.exe. Is there any problem of rights? Thanks for you cooperation
-
Let me tell you in detail. What windows application does is to burn a cd by using NeroCommand.exe which is in the folder of C:\Program Files\Ahead\Nero\NeroCommand.exe. There is an object of ZylBurner.Burner class. It gets the NeroCommand.exe path by burner.GetNeroCommand(). When i run the application from the exe on local system it works properly and when i run it with the help of process it opened but didn't work properly. i mean to say not get the path of nerocommand.exe. Is there any problem of rights? Thanks for you cooperation
You want to operate the CD burner on your web server through a web based client on a remote machine - is that correct?
-
You want to operate the CD burner on your web server through a web based client on a remote machine - is that correct?
yes almost right
-
yes almost right
What's the bit that's almost wrong?
-
What's the bit that's almost wrong?
I couldn't understand what you want to say? Please let me know is it possible or not?