I have a windows application in C#. I have a form. There is a button and a panel(panel1) on that form. Now all I want is when I click on that button, it will fire another EXE (developed in .Net). I am successfull in doing so. But now the challenge lies in opening that EXE in the panel (panel1) present in the form.
Any help !!
Using traditional C# and managed environment, I don’t think that its possible. You can try a) using interop/p-invoke to deal with WinAPIs to do what you want b) if you have created both these C# apps then you can move the second app to be an MDI child i.e. a separate form and all (if its a windows app, otherwise, just live with it :)).