/ Forums / Advansys Formativ / Creating Solutions with Formativ / Disabling IE Script Error dialogs

  • Creator
    Topic
  • #4058
    Anonymous

      Is there a way to disable script debugging in the Portal browser?

      I have IE 6.0 SP1 installed. In a standalone browser, the script debugging is disabled. The setting for this is as follows:

      Tools | Internet Options | Advanced | Browsing | Disable script debugging checkbox

      Is there a way to have the Portal browser recognize this setting, in order to suppress script error dialogs?

      Thank You

      John H
      IntelliReach Corp.

    • Author
      Replies
    • #6983
      Support 1a
      Participant

        Hello John,

        Unfortunately no, this setting is not exposed to the portal. However, you may be able to do it via the Window registry. For example, see this Google thread.

        I hope this helps.

        Regards,

        Advansys Support

        #6985
        Anonymous

          Thanks, I will try this to confirm it works.

          Also, I believe I have found another way to do this, using the NativeInterface property of the Portal, to access the IWebInterface interface to the browser control.

          IWebInterface implements a property called Silent; setting this True appears to work in suppressing the error dialogs:

          Dim objWeb
          Set objWeb = objPortal.NativeInterface
          objWeb.Silent = False

          Thank You

          John H
          IntelliReach Corp

          #6982
          Anonymous

            Sorry, the code should be as follows:

            Dim objWeb
            Set objWeb = objPortal.NativeInterface
            objWeb.Silent = True

            Thank You

            John H
            IntelliReach Corp

            #6984
            Support 1a
            Participant

              Thanks for that hint John!

              Advansys Support

            Viewing 4 replies - 1 through 4 (of 4 total)
            • You must be logged in to reply to this topic.