PDA

View Full Version : Solved: Scroll Bar Issues



khalid79m
03-04-2011, 12:46 AM
HI ,

I have the code below which launchs ie exactaly how I want it but it displays the scroll bars, i need to disable them, i have tried .scrollbars = false , that didnt work.

Essentially I want to open a URL in a window 730 x 100 with no scroll bars, menu bar, tool bar, status bar can anyone help.

Can I open a IE using html code (will this give me option to disable scroll bar and then navigate to link ?)

Thanks in advance



Dim objIE As Object
Set objIE = CreateObject("InternetExplorer.Application")
With objIE
.Visible = True
.MenuBar = False
.Toolbar = False
.StatusBar = False
.Width = 730
.Height = 100
.Resizable = False
.Navigate URL:=Link (http://www.vbaexpress.com/forum/=Link)
End With

khalid79m
03-04-2011, 03:11 AM
please can anyone help :(