Re: Launching IE from pythonCE
"Andrew Booth" <[email protected]>
| Newsgroups | gmane.comp.python.windows-ce |
|---|---|
| Organization | University of Leeds |
| Message-ID | <000301c608a2$902adc50$6400a8c0@booth1> |
Luke Yes, that works like a dream. Very many thanks. Andrew -----Original Message----- From: Luke Dunstan [mailto:[email protected]] Sent: 24 December 2005 14:59 To: [email protected]; [email protected] Subject: Re: [PythonCE] Launching IE from pythonCE ----- Original Message ----- From: "Andrew Booth" <[email protected]> To: <[email protected]> Sent: Saturday, December 24, 2005 5:10 PM Subject: [PythonCE] Launching IE from pythonCE > I'm sure this is a hoary old chestnut, but I haven't seen a real solution > while looking through the archives. > > I want to launch Internet Explorer from PythonCE, in order to present HTML > help text. How do I do it (without recompiling)? > > Andrew Booth Try this: 1. Install the attached win32process module 2. import win32process 3. win32process.CreateProcess('peghelp.exe', 'file:wince.htm', None, None, 0, 0, None, None, None) Hope that helps, Luke