Customize IE to make a toolbar visible

Roger Upole rupole at hotmail.com
Thu May 4 05:01:09 EDT 2006


This does the trick for Google toolbar:

import win32com.client
ie=win32com.client.Dispatch('internetexplorer.application')
ie.Visible=1
ie.ShowBrowserBar('{2318C2B1-4965-11d4-9B18-009027A5CD4F}',True,0)

You should be able to just substitute the GUID for the Yahoo toolbar.

      Roger


<brochu121 at gmail.com> wrote in message news:1146667058.286119.27920 at j33g2000cwa.googlegroups.com...
> Does anyone know of a way to make a toolbar visible in IE through
> automation? I am not speaking about the InternetExplorer.ToolBar that I
> have run into on MSDN, but rather want to make a toolbar such as
> Yahoo's visibilbe through running my script.
>
> How would I do this.
>
> Thanks,
> Dave
> 





More information about the Python-list mailing list