Internet Explorer -- how to bring up a new tab, not a new process?

When I have Internet Explorer (version 7) running, I'd like to be able to bring up a new tab therein, rather than another copy of Internet Explorer. How can I get Python/wxPython to do that?

I'm entering this here because I note that wx.AboutBox can do what I want.

Bob

Hello,

ยทยทยท

On Aug 10, 2008, at 1:51 PM, Bob Klahn wrote:

When I have Internet Explorer (version 7) running, I'd like to be able to bring up a new tab therein, rather than another copy of Internet Explorer. How can I get Python/wxPython to do that?

I'm entering this here because I note that wx.AboutBox can do what I want.

If your using python2.5

import webbrowser
webbrowser.open_new_tab(url)

cody