Hi all,
I am really stumped on this one so really appreciate any help.
I have a .net service which during OnStart creates a Process() to another .NET exe which I want to display a notify icon in the system tray and show a form. However the Main(string[] args) event in the exe is not firing even though the process is started (exe exists as process in Task Manager) All this code works from another Test exe but not the service. (Full Code Below).
Cheers
Stu
*****Service*****
{
System.IO.
sw.WriteLine(
notify.StartInfo.FileName =
notify.Start();
}
sw.WriteLine(ex.Message);
sw.Close();
*****EXE*****