• hyperlink, unwanted web toolbar (XLXP)

    Author
    Topic
    #400408

    I have set up a hyperlink from one workbook to open a different workbook and go to a specified address. This works fine, but the target workbook is opened with the web toolbar displayed.
    I didn’t ask for this.
    How do I suppress it?

    Viewing 1 reply thread
    Author
    Replies
    • #780858

      This is a “feature” of Office programs. You can disable the web toolbar as follows:
      – Switch to the Visual Basic Editor (Alt+F11)
      – Activate the Immediate window (Ctrl+G)
      – Type Application.CommandBars(“Web”).Enabled = False then press Enter.
      – Switch back to Excel.
      You should only have to do this once. If you ever want to enable the web toolbar again, repeat the above with … = True instead of … = False.

      • #780876

        Where, Hans?
        Having done what you described (I think!), the contents of the Immediate window are:

        [auto_open] <
        [SetupFunctionIDs]
        [PickPlatform]
        [VerifyOpen] 1
        [RegisterFunctionIDs]
        [auto_open] >
        Application.CommandBars(“Web”).Enabled = False

        Regretfully, this has not suppressed the feature.
        Sorry if I’m thick.

        • #780913

          The first lines are debug information from loading the Analysis Toolpak (or its VBA counterpart), you can ignore or delete them.
          Just to make sure, click anywhere in the line
          Application.Commandbars(“Web”).Enabled=False
          Then press Enter. If that doesn’t help, I don’t know, sorry.

        • #780914

          The first lines are debug information from loading the Analysis Toolpak (or its VBA counterpart), you can ignore or delete them.
          Just to make sure, click anywhere in the line
          Application.Commandbars(“Web”).Enabled=False
          Then press Enter. If that doesn’t help, I don’t know, sorry.

          • #781227

            Thanks, Hans, that works ok on different machine, here, where there was nothing in the Immediate window.
            Will do your remedy on home box tonight.
            (How do you and the other gurus find out this arcane sort of stuff?)

          • #781228

            Thanks, Hans, that works ok on different machine, here, where there was nothing in the Immediate window.
            Will do your remedy on home box tonight.
            (How do you and the other gurus find out this arcane sort of stuff?)

      • #780877

        Where, Hans?
        Having done what you described (I think!), the contents of the Immediate window are:

        [auto_open] <
        [SetupFunctionIDs]
        [PickPlatform]
        [VerifyOpen] 1
        [RegisterFunctionIDs]
        [auto_open] >
        Application.CommandBars(“Web”).Enabled = False

        Regretfully, this has not suppressed the feature.
        Sorry if I’m thick.

      • #1153440

        This is a “feature” of Office programs. You can disable the web toolbar as follows:
        – Switch to the Visual Basic Editor (Alt+F11)
        – Activate the Immediate window (Ctrl+G)
        – Type Application.CommandBars(“Web”).Enabled = False then press Enter.
        – Switch back to Excel.
        You should only have to do this once. If you ever want to enable the web toolbar again, repeat the above with … = True instead of … = False.

        Hi Hans,
        I had the same problem. This worked great at home, but didn’t make any difference at work. At work, the Excel program (2003) is on a Wan (along with all the spreadsheets), wonder if that makes a difference. Since you have to logon to the Wan, it does keep my special toolbars and macros the way I set them up though.

        The only thing currently under “Immediate” is the “Application.CommandBars(“Web”).Enabled = False” that I entered.

        Any other ideas?

        Thanks

        • #1153451

          Do you have a personal macro workbook Personal.xls of your own? If not, it’ll be difficult.

          • #1153452

            Hans,

            Yes I do. My toolbar has icons that activate macros in the Personal.xls.

            • #1153454

              Try the following:

              – Start Excel.
              – Press Alt+F11 to activate the Visual Basic Editor.
              – Double-click the ThisWorkbook node under Personal.xls in the project explorer on the left hand side.
              – Copy the following code into the module that appears:

              Private Sub Workbook_Open()
              Application.CommandBars(“Web”).Enabled = False
              End Sub

              – This code will run automatically each time you start Excel.

            • #1153460

              Hi Hans,

              Once again you’ve worked miracles. Worked perfectly.

              Thanks so much.

    • #780859

      This is a “feature” of Office programs. You can disable the web toolbar as follows:
      – Switch to the Visual Basic Editor (Alt+F11)
      – Activate the Immediate window (Ctrl+G)
      – Type Application.CommandBars(“Web”).Enabled = False then press Enter.
      – Switch back to Excel.
      You should only have to do this once. If you ever want to enable the web toolbar again, repeat the above with … = True instead of … = False.

    Viewing 1 reply thread
    Reply To: hyperlink, unwanted web toolbar (XLXP)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: