Windows service

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • smahaboob
    New Member
    • Mar 2007
    • 32

    Windows service

    How can we call the windows application through windows service
  • Madzone
    New Member
    • Mar 2007
    • 7

    #2
    Code:
    System.Diagnostics.Process objProcess = new System.Diagnostics.Process();
    objProcess.StartInfo.FileName = "FULL PATH TO FILE";
    objProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
    objProcess.StartInfo.UseShellExecute = true;
    objProcess.Start();

    Comment

    Working...