@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Passed in place of STARTUPINFO to extend CreateProcess !!!!C# Definition: [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] public struct STARTUPINFOEX { public STARTUPINFO StartupInfo; public IntPtr lpAttributeList; } !!!!VB Definition: Structure STARTUPINFOEX Public TODO End Structure !!!!User-Defined Field Types: None. !!!!Notes: See CreateProcess and InitializeProcThreadAttributeList,UpdateProcThreadAttribute '''Do not forget''' to set the size of your object after filling in the attributes, before calling CreateProcess startupInfoEx.StartupInfo.cb = Marshal.SizeOf(startupInfoEx); Documentation: STARTUPINFOEX@msdn on MSDN
Edit Structures.Startu...
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.