pythoncom InternetExplorer.Application don't work in vista || firefox pythoncom ?

Méta-MCI (MVP) enleverlesX.XmcX at XmclaveauX.com
Sat Jul 5 17:14:15 EDT 2008


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





More information about the Python-list mailing list