Re: Webbrowser On Windows

2005-05-02 Thread J Correia
"M.E.Farmer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I played around with it. > > import pythoncom > from win32com.client import Dispatch > ###

Re: Webbrowser On Windows

2005-05-01 Thread M.E.Farmer
I played around with it. import pythoncom from win32com.client import Dispatch def webbrowser(url=None): ie = pythoncom.CoCreateInstance("Int

Re: Webbrowser On Windows

2005-05-01 Thread M.E.Farmer
Awesome! works perfectly on win2k -> I.E 6 Python makes COM almost readable ;) M.E.Farmer -- http://mail.python.org/mailman/listinfo/python-list

Re: Webbrowser On Windows

2005-05-01 Thread J Correia
><[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >It seems to me that there is no way to create a new instance of Internet >Explorer (if there are already some IE windows opened). >Does anyone know a possible solution? Or a workaround (without using >startfile, maybe?) that will force I

Re: Webbrowser On Windows

2005-05-01 Thread M.E.Farmer
Hello Andrea, I have played around for a few seconds and have a few suggestions. The code is a little baffling it appears that there is no way to do that on windows. I have looked into Internet Explorer and have found that there is an option in Internet Explorer that controls this. In Internet Exp

Re: Webbrowser On Windows

2005-05-01 Thread andrea_gavana
>It seems to me that there is no way to create a new instance of Internet >Explorer (if there are already some IE windows opened). >Does anyone know a possible solution? Or a workaround (without using >startfile, maybe?) that will force IE to create a new instance? Should I suppose no solution exi

Webbrowser On Windows

2005-04-29 Thread andrea . gavana
Hello NG, I am using the webbrowser module (on Windows 2000/XP), and I am wondering if anyone knows how to use the input arguments "new". On Windows, it seems to be ignored. By looking at the commands it does on Windows: class WindowsDefault: def open(self, url, new=0, autoraise=1):