How do I start a program, and put that program INSIDE my program ? So it will be the child of my program ?
Thank you, Jerry. Homepage: http://fraxionsoftware.cjb.net ICQ: 40269591 Mail: Contact Me
This code will display forms within a form..also can be used for other applications. Code: Declare Function SetParent Lib "user32" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long SetParent(Me.hWnd, Form1.hWnd)
Declare Function SetParent Lib "user32" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long SetParent(Me.hWnd, Form1.hWnd)
Forum Rules