Execute a program inside a C# program
-
I want to run an Office Communicator inside a User Control. I do not want it to open as a new window, but instead inside my panel. This is the code I have tried: Process comm = new Process(); comm.StartInfo.CreateNoWindow = true; comm.StartInfo.FileName = @"C:\Program Files\Microsoft Office Communicator\communicator.exe"; comm.Start(); The problem is that the Communicator is opened, but not inside my User Control. Does someone know how to solve this problem?
-
I want to run an Office Communicator inside a User Control. I do not want it to open as a new window, but instead inside my panel. This is the code I have tried: Process comm = new Process(); comm.StartInfo.CreateNoWindow = true; comm.StartInfo.FileName = @"C:\Program Files\Microsoft Office Communicator\communicator.exe"; comm.Start(); The problem is that the Communicator is opened, but not inside my User Control. Does someone know how to solve this problem?
-
I want to run an Office Communicator inside a User Control. I do not want it to open as a new window, but instead inside my panel. This is the code I have tried: Process comm = new Process(); comm.StartInfo.CreateNoWindow = true; comm.StartInfo.FileName = @"C:\Program Files\Microsoft Office Communicator\communicator.exe"; comm.Start(); The problem is that the Communicator is opened, but not inside my User Control. Does someone know how to solve this problem?