Consulting

Results 1 to 2 of 2

Thread: Solved: Scroll Bar Issues

  1. #1

    Solved: Scroll Bar Issues

    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


    [vba]
    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
    End With
    [/vba]

  2. #2
    please can anyone help

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •