Embedding different applications in a Win Form in .NET
How to embedd two different applications in a single windows form? Suppose I have an application abour calculations and about web cam and I want them to show in a form? Don't need only proccess.start().... I think you may be looking for the SetParent Windows API call . To do this, you'd need to import the relevant API call: [DllImport("user32.dll")] static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent); Add using directives at the top of the file: using System.Diagnostics; using System.Runtime.InteropServices; Start the external and call SetParent on it (we are using notepad