@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: The CREATESTRUCT structure defines the initialization parameters passed to the window procedure of an application. These members are identical to the parameters of the CreateWindowEx function. !!!!C# Definition: [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Auto)] public struct CREATESTRUCT { public IntPtr lpCreateParams; public IntPtr hInstance; public IntPtr hMenu; public IntPtr hwndParent; public int cy; public int cx; public int y; public int x; public int style; public IntPtr lpszName; public IntPtr lpszClass; public int dwExStyle; } !!!!VB Definition: <StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Auto)> _ Public Structure CREATESTRUCT Public lpCreateParams As IntPtr Public hInstance As IntPtr Public hMenu As IntPtr Public hwndParent As IntPtr Public cy As Integer Public cx As Integer Public y As Integer Public x As Integer Public style As Integer Public lpszName As IntPtr Public lpszClass As IntPtr Public dwExStyle As Integer End Structure !!!!User-Defined Field Types: None. !!!!Notes: None. Documentation: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/windowing/windows/windowreference/windowstructures/createstruct.asp
Edit Structures.CREATE...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.