powerpoint
C#
2
Posts
2
Posters
0
Views
1
Watching
-
you can turn most any window into part of your app's GUI. What you need to do is set your Form as that window's parent. So you will need some P/Invoke calls to some native Win32 functions to find the window handle and then call SetParent. Here is a prototype to get you started:
[DllImport("user32.dll"), EntryPoint = "SetParent", SetLastError = true)]
private static extern IntPtr SetParent(IntPtr hwndChild, IntPtr hwndParent);:)
Luc Pattyn [Forum Guidelines] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, improve readability, and make me actually look at the code.