Hi all . I wonder how i can load a specific external applications window inside my form. I do not mean the application itself . i mean a window of that application.
Printable View
Hi all . I wonder how i can load a specific external applications window inside my form. I do not mean the application itself . i mean a window of that application.
Usage would be SetParent [hWnd of the window you wish to have inside your program], Me.hWndCode:Private Declare Function SetParent Lib "user32" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long
SetParent's return value, I guess, is the original parent hWnd.
Many thanks for u reply. I got class name and title of the window . could u show me the code that puts the windows inside my form?Quote:
Originally Posted by Merri