I remember I had some app the launched other applications and placed them in tabs in it's form without the titlebars. I wonder how can that be done? Preferably with C# but if it's not possible/too hard within .NET C++ is fine too.
Thanks.
I remember I had some app the launched other applications and placed them in tabs in it's form without the titlebars. I wonder how can that be done? Preferably with C# but if it's not possible/too hard within .NET C++ is fine too.
Thanks.
Applications like Excel and Internet Explorer provide specific support (OLE) for being embedded in other windows, so third-party application can run an instance of them within their own window easily.
If the application you wish to embed doesn't supply specific support for it, it would be much harder to achieve. It's easy to control the target application's windows to make them appear to be in your tabs, but when it comes to removing/hiding specific sub-parts of the windows (borders and menus etc) it gets a lot more difficult (all depending on exactly which bits of the application's display you wish to alter).