How to paste external window to my form?
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi! I need to paste window from some external program (let's say it's MS Outlook for example) to one of tabs in my application. Is it possible? My first tought was to find hWnd using win32api, and then try to manipulate window like this: System.Windows.Forms.Control c=Control.FromHandle(a); It works fine, but only for current window and its children, returns null for other windows. I tought about playing with some security setting but have no idea hot to apply them to application.