Basically I have got two projects in a same solution. Project A has a form, and on the form this is a panel. Project B's entry points is written like this:
namespace Demo
{
public static class Program
{
[STAThread]
public static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}
And my question is how do i run this project B in Project A Form's Panel? In addition Project B is a form contains a pictureBox which grabs frame from the webcam.