How do I start a program, and put that program INSIDE my program ?
So it will be the child of my program ?
How do I start a program, and put that program INSIDE my program ?
So it will be the child of my program ?
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)