我在ppc下作的:
[DllImport("coredll.Dll", EntryPoint="CreateProcess", SetLastError=true)]
extern static int CreateProcess(string strImageName, string strCmdLine, IntPtr pProcessAttributes, IntPtr pThreadAttributes , int bInheritsHandle, int dwCreationFlags, IntPtr pEnvironment, IntPtr pCurrentDir, IntPtr bArray, ProcessInfo oProc); ProcessInfo pi = new ProcessInfo();
CreateProcess("iexplore.exe" , "http://www...", IntPtr.Zero, IntPtr.Zero, 0, 0, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, pi); 这样打开的ie是有地址栏的,如何隐去他???