Please tell me, is it possible for my compiled EXE files to open and show external MDIChild frm files into the MDIParent in my projects? How is it done?
Martin(UK):D :D :( :(
Printable View
Please tell me, is it possible for my compiled EXE files to open and show external MDIChild frm files into the MDIParent in my projects? How is it done?
Martin(UK):D :D :( :(
Use the SetParent API
Usage:Code:Private Declare Function SetParent Lib "user32" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long
Code:SetParent hwnd_of_app, Me.hWnd