Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than user32, prefix the name with the module name and a period.
<DllImport("user32.dll", SetLastError:=True, CharSet:=CharSet.Auto)> _
Public Shared Function SetParent(ByVal hWndChild As IntPtr, ByVal hWndNewParent As IntPtr) As IntPtr
End Function
VB Signature:
Declare Auto Function SetParent Lib "user32" (ByVal hWndChild As IntPtr, ByVal hWndNewParent As IntPtr) As IntPtr
User-Defined Types:
None.
Notes:
None.
Tips & Tricks:
Use this to create forms and then place child windows on it.
Me.SuspendLayout()
Dim runProcess As New System.Diagnostics.Process
Dim info As New System.Diagnostics.ProcessStartInfo
info.FileName = "NotePad.exe"
info.WindowStyle = ProcessWindowStyle.Normal
runProcess = Process.Start(info)
One thing that makes SetParent more useful than MDIParent is that there are cases in which a control may be unstable in a MDI interface.
An example of this that I have encountered is using the FarPoint Spread 3.0/6.0 ActiveX controls. These controls will throw a Runtime protected memory violation exception if they are hosted in a WinForms Form, instantiated and then the Form.MDIParent property is set to an MDI container Form but using the SetParent(childForm.Handle, Me.Handle) call works.
The SetParent function changes the parent window of the specified child window.
10/4/2014 6:00:38 PM - -158.255.168.220
The SetParent function changes the parent window of the specified child window.
10/4/2014 6:00:38 PM - -158.255.168.220
TODO - a short description
12/15/2007 7:04:43 PM - anonymous
TODO - a short description
5/31/2007 12:27:37 AM - -124.30.20.250
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).