Error on Form with a WebBrowser control: A script on this page causing your web browser to run slowly.

Hi,
I have a form with a WebBrowser control. When I load a page, I am getting the following error popup:
Stop running this script?
A script on this page is causing your web browser to run slowly.
If it continues to run, your computer might become unresponsive.
How to suppress the above error? I tried using WebBrowser.ScriptErrorsSuppressed by setting it to true. But it didn't work for me.
Thanks in advance.
Thanks Prasad

Hi,
I have a form with a WebBrowser control. When I load a page, I am getting the following error popup:
Stop running this script?
A script on this page is causing your web browser to run slowly.
If it continues to run, your computer might become unresponsive.
How to suppress the above error? I tried using WebBrowser.ScriptErrorsSuppressed by setting it to true. But it didn't work for me.
Thanks in advance.
Thanks Prasad
Hello,
In addition, would you mind sharing us the version of your IE and the detailed html code of that page?
Regards,
Carl
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Infoview stop running this script ...web browser to run slowly error

    Hi Everyone,
    I hope this is the right forum for this question. I'm experiencing 1 error with 1 report run from Infoview. When I run the report, I get this error: "Sop running this script? ... A script on this page is causing your web browser to run slowly. If it continues to run, your computer might become unresponsive." I say No twice to not stop running the script and then the report eventually displays.
    Is there something specific I should look for in my report which may be causing this?
    Thanks,
    John

    Hi John,
    Start by removing parts of the report to see what is causing the problem, Start with subreports and check the DB connection info if there is any.
    Verify the Report in the Designer also to confirm the connection info is correct.
    Don

  • Get error when installing .json back up file A script on this page may be busy, or it may have stopped responding. You can stop the script now, open the script

    get error when installing .json back up file A script on this page may be busy, or it may have stopped responding. You can stop the script now, open the script
    Also tried to chang places.sql or what ever to my back up .json file and that wouldnt work. Is there a way to just move my backup .json file some where my bookmarks are a bigger file and i t will take a bit to upload.

    A script on this page may be busy, or it may have stopped responding. You can stop the script now, open the script in the debugger, or let the script continue.
    Script: chrome://browser/content/places/editBookmarkOverlay.js:909

  • In some downloads I get an error message as js doesn't work: a script on this page may be busy, or it may have stopped responding, script file is: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsExtensionManager.js:623

    This is the entire message I get, but if click "stop" or "continue" nothing is fixed and the message is repeating forever...
    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script:
    file:///C:/Program%20Files/Mozilla%20Firefox/components/nsExtensionManager.js:623
    How this can be fixed
    regards
    Michey

    I encountered this issue with Win 7 but fixed it by doing the following: Open up AVG and then click on Tools / Advanced settings. On the bottom of the list should be AVG Security Toolbar, click on it. There should be an option to Repair the toolbar.

  • When accessing email in IE an error says a script in movie is causing adobe flash player to run slow

    when accessing email in IE an error says a script in movie is causing adobe flash player to run slowly. and email keeps loading and doesn't open.

    Here is the download page for Click-to-PlugIn:
    http://hoyois.github.com/safariextensions/clicktoplugin/

  • Errors when trying to use WebBrowser control

    Hi,
    I am trying to use the WebBrowser control on a winForm. When I do, I initially get a an error relating to the thread being required to be in a Single Threaded Apartment. (cannot be instantiated because the current thread is not in a single-threaded
    apartment) So I add it to a single threaded apartment which fixes that issue.
    However when I try to run it again, the next error I get is (Controls created on one thread cannot be parented to a control on a different thread). So I add the control to the form in the thread context of the form using a
    SyncContext, but this makes no difference so I use BeginInvoke. Not only does this not work but it freezes the form I am trying to load with the WebBrowser.Any
    Any ideas why this is acting in this fashion?
    Below is my final attempt at getting the web Browser to work:
    Many thanks for any suggestions!
    Public Sub New()
    Dim t As New Threading.Thread(AddressOf InitBrowser)
    t.SetApartmentState(Threading.ApartmentState.STA)
    t.Start()
    End Sub
    Private browser As WebBrowser
    Private Sub InitBrowser()
    browser = New WebBrowser()
    browser.Width = 500
    browser.Height = 500
    ' this didn't work
    '_syncContext.Send(Sub(x)
    ' Me.Controls.Add(browser)
    ' browser.Navigate("http://www.google.com")
    ' End Sub, Nothing)
    If Me.InvokeRequired Then
    Me.BeginInvoke(Sub()
    Me.Controls.Add(browser)
    browser.Navigate("http://www.google.com")
    End Sub)
    Else
    Me.Controls.Add(browser)
    browser.Navigate("http://www.google.com")
    End If
    End Sub
    @nt

    Hi Carl, Thanks for your time.
    Below is the initial simple, unthreaded code, but when I try to run it I get this error :-
    "ActiveX control '8856f961-340a-11d0-a96b-00c04fd705a2' cannot be instantiated because the current thread is not in a single-threaded apartment."
    Const TOP_MARGIN = 50
    Const SIDE_MARGIN = 3
    Me._browser = New WebBrowser() ' breaks here
    _browser.Top = TOP_MARGIN
    _browser.Left = SIDE_MARGIN
    _browser.Height = CInt(Me.Height - (TOP_MARGIN * 2))
    _browser.Width = CInt(Me.Width - (SIDE_MARGIN * 2))
    _browser.ScrollBarsEnabled = False
    so I wrap it in the STA thread which fixes that issue, as below:
    Dim browserThread = New Thread(Sub() InstantiateBrowser())
    browserThread.SetApartmentState(ApartmentState.STA)
    browserThread.Start()
    While browserThread.IsAlive
    Application.DoEvents()
    End While
    Me.Controls.Add(_browser) ' breaks here'
    _browser.Navigate(_preparationURL)
    End Sub
    Private Sub InstantiateBrowser()
    Const TOP_MARGIN = 50
    Const SIDE_MARGIN = 3
    Me._browser = New WebBrowser()
    _browser.Top = TOP_MARGIN
    _browser.Left = SIDE_MARGIN
    _browser.Height = CInt(Me.Height - (TOP_MARGIN * 2))
    _browser.Width = CInt(Me.Width - (SIDE_MARGIN * 2))
    _browser.ScrollBarsEnabled = False
    End Sub
    But now that is Apartment threaded, it is not being created on the same thread as the form, so when I try to add the browser to the forms controls collection I get the error below:
    "Controls created on one thread cannot be parented to a control on a different thread."
    I then tried rejoining the thread with a syncContext but that did not help. Any ideas on this?
    Many thanks
    @nt

  • Fatal error distributing forms with Adobe Acrobat 9 Pro

    Fatal error distributing forms with Adobe Acrobat 9 Pro.
    I click
    "Adobe Acrobat Pro/Formularer/Distribuer formularer/"
    ("Adobe Acrobat Pro/Forms/Distribute forms/")
    and chose a form for distribution and in the picture "Distribute Form" chose
    "Automatically download & organize responsees with Acrobat.com".
    I then click "Next" and write an email-address to send it to (i.g. to my own)
    and then click "Send".
    The program quickly writes
    "Authenticating email-addresses"
    and then gives the following error message
    "Borland Database er ikke installeret. Kan ikke indlæse tjenesteudbyder af Corel-adressekartotetek."
    ("Borland Database is not installed. Can not read load service provider of Corel address directory.")
    When I clik "OK" I get the error message
    "Adobe Acrobat has encountered a problem and needs to close. We are sorry for the inconvenience."
    I have undeleted and reinstalled Adobe Acrobat many times without any effect.
    The same procedure has been tried on another computer without any problem.
    What is my problem and how do I resolve it ?
    Operating System Windows XP
    Has worked may times before
    Same results with other files
    No recent system hardware or software change

    This is the image that I have plus....
    Reader 9.0 AcroRd32.exe caused Microsoft Visual C++ Runtime Library error
    Preinstalled Adobe 9 Standard doesn't work on a new Dell out of the box - why would it?
    Need help in creating a batch file that will add and remove some registy keys.
    %userprofile%

  • 1 form with 2 buttons to go to 2 different pages

    Hi. I have 1 form I'm using on a page for adding some information. I have an Add button at the bottom that goes to an action page that inserts the data into an Access Database and displays what was inserted. I want to use the same form, but I want to have another button that goes to a different page, but still inserts the data into the database. How do I do this? Below is what I have for the beginning of the form and the button I click on to add it to the database. I won't put all the stuff inside the form so I keep this concise.
    <cfform name="AddECNumber" action="add_new_ec_number_action.cfm" method="post">
    <input type="button" value="Add" onclick="verify();">
    Andy

    jamie61880 wrote:
    BKBK,
         Thank you. This works great! I do have one more question though, now. Once the 2nd button is clicked, I would like it to go to an existing page I already have set up. This page is called "add_item_existing_eco.cfm". Normally, to get to this page, the user would have clicked a link to get here. Then this page just adds an item to the ECO.
         But now, I want the page with the form I talked about above to go to this page also, once the form is submitted. So I could add the Inserting code to the "add_item_existing_eco.cfm" page and display the info, but how am I going to prevent the info. from when a link is clicked, to not insert more data.
        I would need an If Statement that says if the "Add new Item Button" was clicked from the Add ECO page, then just insert the data and display the info. Elseif the info. came from a link, then just display the data. How can I say If the "Add new Item Button" was clicked from the Add ECO page? Does this make sense? Or should I just create a new page for when this "Add new Item Button" is clicked?
    Yes, the question is clear. There are 2 possible scenarios:
    1) From now onwards, an insert will only be done by means of the form button. Coming to the action page by means of a link will no longer lead to an insert.
    Form page:
    <script type="text/javascript">
    function verify()
       document.myform.action ="add_new_ec_number_action.cfm";
       document.myform.submit();
    function sendIt()
       document.myform.action ="add_item_existing_eco.cfm";
       document.myform.submit();
    </script>
    <cfform name="myform" method="post">
    <cfinput type="text" name="txt"><br>
    <cfinput type="button" name="submitBtn" onclick="verify()" value="Add"><br>
    <cfinput type="button" name="submitBtn" onclick="sendIt()" value="Insert">
    <cfinput type="hidden" name="isUpdated" value="yes">
    </cfform>
    Page add_item_existing_eco.cfm:
    <cfif isDefined("form.isUpdated") and form.isUpdated>
    <!--- Insert the data --->       
    </cfif>
    <!--- Display the info --->
    2) An insert can be triggered by the link or by the form-button, which ever arrived first at the page dd_item_existing_eco.cfm.
    I do believe the best solution in this scenario is to use the database. Start, for example, by determining which column in the database table can be used to verify that an insert has occurred. A datetime column is ideal for this purpose.
    Then add a query, like the following, to verify whether an insert has already occurred in a specific time.
    <!--- Number of inserts done in the past 6 hours (Assumption: doneDate registers datetime of each insert) --->
    <cfquery name="verifyInsert" datasource="myDSN">
        select count(*) as numberOfInserts
        from myTBL
        where doneDate > #createODBCDatetime(dateAdd("h",-6,now()))#
    </cfquery>
    <cfif verifyInsert.numberOfInserts EQ 0><!--- No insert has yet occurred --->
    <!--- Code to do insert --->
    </cfif>
    <!--- In all cases, display info --->

  • I have an error message that says A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see

    The exact and full message is:
    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: https://fbstatic-a.akamaihd.net/rsrc.php/v2/yk/r/w50KHoJTfoZ.js:26
    so, I have read the many other threads on this problem:
    1. I just installed firefox for the first time - this happens on facebook and many other sites
    2. I have reset firefox - did not fix the problem
    3. I have checked all my extensions and plug ins for up to date
    4. I turned off hardware acceleration
    5. I tried disabling all my plug ins
    6. I used to use firefox, but it started doing this and I was never able to resolve this and went to chrome.
    I am using Win 7. No problem, ofr the most part, using IE or Chrome, I just wanted to try firefox again. Does it not work with win 7?

    You can try to clear the Flash local storage and settings if the problem is with the Flash plugin.
    *Windows Control Panel > Flash Player > Storage: Local Storage Settings
    **Remove a specific domain: Local Storage Settings by site
    **Remove all domains: Delete All and Delete Data
    Flash Website Storage Settings panel:
    *http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html
    Global Storage Settings Panel:
    *http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager03.html

  • "Cannot use adobe reader to view pdf in your web browser" error in Windows 7 and Acrobat pro 8.1.7

    I get the error "Cannot use adobe reader to view pdf in your web browser.  Reader will now exit.  Please exit your browser and try again" in Windows 7 x32 and Windows 7 x64 with Acrobat pro 8.1.7.  This happens when trying to open  a PDF file in Internet explorer 8.0.760 or when I open a PDF in Quickbooks 2008.  If I answer ok or cancel the file opens normally.  If I open acrobat 8 first then the pdf files open as expected.  I also tried a copy of Acrobat reader with no difference in the outcome.  Since this happens on two different computers one fresh copy of windows 7 x64 the other an upgrade to windows 7 x32 and they used to work before the change to windows 7, I assume there is some kind of incompatibility with windows 7 and acrobat.  Is this a known issue and will it be fixed in an update to acrobat in the near future?

    tvandersluijs - I'm sorry if that screwed up your machine however:
    1. What version of Adobe Reader are you using because as you can see the registry entry is for Adobe Reader 9, if ur using Adobe Reader 8 then u need to specify ur version as PAllens entry suggested - "E.g. "C:\Program files\Adobe\Acrobat [version]\Reader\AcroRd32.exe""
    2. I've used this solution significantly because I have come across this specific issue for multiple users.
    3. All the registry entry does is tell Windows what program to use by default to open/view PDF documents.
    My intention wasn't to screw up ur machine or anybody elses as I said I've used this solution many times however what I've should gave is the disclaimer to backup ur registry before u make mods so u can revert back in case. Also the ony other thing I can think of is that this solution was for Windows XP using registry editior 5, I'm noticing that the title of this thread is Windows 7.

  • When printing I get notation:"An error has occurred in the script on this page"

    when printing I get notation:"An error has occurred in the script on this page", error 1791-Char 1- error invalid argument-Code 01-Can print Word, but not Web pages. Have Windows 7, Home and Internet Explore 10. Please help

    Sorry that you are having a problem with the script error. 
    Try to clear your CACHE and COOKIES on your internet. 
    Are you able to print from another program, such as Firefox, Google chrome, etc?
    Let me know if it prints. 
    **Click the KUDOS star on the left to say 'Thanks'**
    Please mark a reply "ACCEPTED AS SOLUTION" if it solved your problem, so others can find it.

  • Web Browser "An error occured in the script on this page'

    Hi,
    I try to use a Web applic through std SBO Web Browser window. However I get this message:  "An error occured in the script on this page'.
    Why do I get this message? (I don't get it through other explorers)
    Is there a way to change browser parameters? Does SBO uses IE?
    BR,
    Vangelis

    The default is IE. Not everything that works on IE works through web application. Many open source web standards do not play well with IE. Try IE 8 or higher.

  • An error has occurred in the script on this page ( Crystal Reports Product Version - 11.5.7.770)

    Post Author: sampolo
    CA Forum: Crystal Reports
    I am running Crystal Reports Product Version - 11.5.7.770, On MS windows Server 2003 R2 standard Edition SP2
    But every time I launch Crystal Reports I am getting the following error message..
    An error has occurred in the script on this page
    Line: 360
    Char: 30
    Error: Unspecified error.
    Code: 0
    URL: http://www.businessobjects.com/products/reporting/crystalreports/start/designer/default.asp
    Do you want to continue running scripts on this page? YES or No..
    ========================
    I have try this following fix with no success...can someone help?
    http://support.microsoft.com/kb/895608
    http://technicalsupport.businessobjects.com/cs/forums/permalink/606/5889/ShowThread.aspx

    Post Author: sampolo
    CA Forum: Crystal Reports
    Well I found a temporary fix for this issue. I put the http://www.businessobjects.com/ as a trusted site in IE!!
    First, get the URL of the site to trust. For example, " http://www.businessobjects.com/
    .Next, Click on the "Tools" menu and select "Internet Options". Click on the "Security" tab.
    Click on the green circle with a white check marked "Trusted Sites". In the space provided, enter the URL of the site (you'll probably want to uncheck the box requiring SSL, which is a high-security link, for all sites). Click the "Add" button. Continue entering sites until you have them all entered, then click OK as needed. If you find another trusted site later, simply go back to this menu item and enter the data.

  • An error has occurred in the script on this page.

    When I start the computer, and get to the Windows page, before I open any other programs, I am getting this error message in a box:
    An error has occurred in the script on this page.
    Line:  1
    Char: 1
    Error:  Unable to open registry key
                “HKCU\software\classes\clsid\{ab8902b4-09ca-4bb6-b78d-a8f59079a8d5}\localserver32\a” for reading
    Code: 0
    URL:
    Do you want to continue running scripts on this page?
    No matter if I choose yes or no, I get a blank screen with a lot of nonsensical writing in the top box.
    Can anyone help me clear this error?

    Malware or trojans like to hide in this key, not saying it is though but just in case run a full scan with your antivirus program and download Malwarebytes Free, not the trial version.
    https://www.malwarebytes.org/lp/lp4/02/?gclid=CIS6g_K9xMMCFQ8paQodvnoA1Q
    Please mark my post as SOLVED if it has resolved your problem. It helps others with similar situations.

  • Error message each time start-up 'script on this page may be busy or it may have stopped: script: chrome://xfin_portal/contact/toolbar.xul:1

    error message with Xfinity toolbar "a script on this page may be busy or may have stopped responding. You can stop script now or you can continue to see if script will continue. Script:chrome://xfin_portal/content/toolbar.xul:1"
    Tried uninstalling Chrome, uninstalled xfinity toolbar, reinstalled toolbar & restarted computer. Didn't help the problem.

    chrome://xfin_portal/content/toolbar.xul:1 has nothing to so with the Google Chrome web browser, that message is about Firefox and its' addons. It relates to the Mozilla XUL markup language used for the user interface in Firefox.
    http://en.wikipedia.org/wiki/Chrome_Mozilla

Maybe you are looking for