Hi!
Your code run OK for me (Vista Ultimate).
This other version run also OK :
def webbrowser(url=None):
   import win32com.client, time

ie=win32com.client.Dispatch('InternetExplorer.Application') while ie.Busy==True:
       time.sleep(0.125)
   ie.Top = 0
   ie.Left = 0
   ie.Height = 400
   ie.Width = 400
   ie.AddressBar = False
   ie.MenuBar  = False
   ie.Resizable = False
   ie.StatusBar = False
   ie.ToolBar = False
   ie.Visible = 1
   return ie

w = webbrowser()
w.Navigate('http://www.google.nl')





@-salutations
--
Michel Claveau


--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to