How do i using vba launch an IE Web browser that goes to a specified site and allows me to control position of scroll bars ? I can launch browser but I can not control the vertical scroll bars from
VB.
Here is the
vb code that works:
Set Ie = CreateObject("InternetExplorer.Application")
Ie.AddressBar = False
Ie.MenuBar = False
Ie.Toolbar = False
Ie.Width = 600
Ie.Height = 750
Ie.Left = 0
Ie.Top = 0
Ie.navigate "www.yahoo.com"
Ie.resizable = True
Ie.Visible = True
Ie.document.vscrollbar.value = 200 ' THIS DOES NOT WORK !!
Thanks,
Gary