to run an exe file in the panel of c#.net application
问题 I want to run an exe file on my winform .net application within the panel using c# code I'm able to run exe file on the button click with System.Diagnostics.ProcessStartInfo and Process p = Process.Start("notepad.exe"); but what is the code to run this notepad file or any other exe file within the panel using c# code? I want to run the application within the panel not on the separate window.i had run the following code but the exe does not stay on the screen nor it opens within the panel