answersLogoWhite

0


Best Answer

Sadly one of the most annoying messages IE can offer as it (on the face of it) is unhelpful....

What it is trying saying is either:

The app you ran tried to read or push data that is incorrect. e.g push 'x'kb to a buffer that is only 'x'-1 in size)

or

The web page you opened tried to push or read data that was incorrect. e.g. the Web page tried to run a command your browser doesn't understand, (old JAVA or active X plugin etc etc etc) or requested something you or they (it's a two way street) don't allow to be given.

http://support.microsoft.com/kb/822521

http://support.microsoft.com/kb/226342

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does 'A Runtime Error Has Occurred. Do You Wish to Debug' mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can get rid of A Runtime Error has occured do you wish to debug?

How do I get rid of a runtime erroe has occured. Do you wish to debug??? There are 3 step to repair runtime error If you got runtime error then there is a 94% chance that your computer has registry problems. To repair runtime error you need to follow the steps below: * Step 1 - Download a Perfect Optimizer,install this error repair tool. * Step 2 - Click the Repair All Button.It will scan you PC for Free. * Step 3 - Then click the Repair All Button again and your done! It is very easy to repair runtime error. Here are the URL of Perfect Optimizer: http://www.errorremovers.com/tidporp-runtime_error-zz0005


How to do you print A4?

Network Error (tcp_error)A communication error occurred: "" The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.For assistance, contact your network support team.


What would you wish for if you had all 7 dragonballs?

I would wish that i knew the answer to all my problems as they occurred. what about you?


What is a brown kiwi called?

Network Error (tcp_error) A communication error occurred: ""The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time. For assistance, contact your network support team.


Format Of Salary Increment Letter by Manager?

Network Error (tcp_error) A communication error occurred: ""The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time. For assistance, contact your network support team.


Where in the world do rose plant grow the most?

Network Error (tcp_error) A communication error occurred: "Address not available"The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time. For assistance, contact your network support team.


What speed does it take for a satellite to go back into the earth's atmosphere?

Network Error (tcp_error) A communication error occurred: "Address not available" The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time. For assistance, contact your network support team.


Your 1776-1976 quarter has mint error with 1976 date covered is it worth any more than o25?

Yes, such error raises the price. I wish you'd explain what sort of error is it?


What does Force magnifier mean in student terms?

Network Error (tcp_error) A communication error occurred: ""The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time. For assistance, contact your network support team.


What are the difference of physical and mental characteristics in different types of cats?

Blackboard Collaborate has encountered an exceptionAn error report has been generated providing the details of the problem to send to Blackboard Collaborate a division of Blackboard Inc. Optionally, you may add your e-mail address and a description of what you were doing, and/or what behaviour the application exhibited when the error occurred. This additional information will help in diagnosing and fixing the problem.If you wish to preview the error report before it is sent, press the "Preview..." button below.


Fatal error notices entire PC going to die get anything off of it you wish to keep Is this a virus?

Probably YES. No operating system that I know of does that. If it actually says "Fatal error: entire PC going to die get anything off of it you wish to keep", then it is DEFINITELY a virus.


If you can debug codewith break point in Release mode then what is actual necessity of Debug mode?

You are confusing debug mode with debug build. A build simply defines a specific set of compiler options to produce an executable. You can define as many builds as you like so you can easily switch from one configuration to the other without having to continually reconfigure the compiler options. For instance, if you are working on a 64-bit machine you might choose to create a separate executable specifically for 32-bit systems, therefore you need a separate build configuration with the appropriate compiler options. A debug build is simply a compiler configuration that is ideally suited to debugging because it has no compiler optimisations and may include source code that will not be compiled in the release build. However, release builds can also be debugged. As developer you will have access to the program debug database, but you can also make this database available to your users if you wish them to be able to debug your release builds. Debug mode is not the same as a debug build. When you run your program from within the debugger (or from within your IDE) then you are in debug mode. In this mode, the program is attached to the debugger and all breakpoints set within the debugger will be honoured, even if it is a release build you are running. But when the program is executed outside of the debugger then you are in standalone (normal) mode and the breakpoints will have no effect, even in debug builds. Your debugger will typically provide some means to execute the program outside of the debugger. In Microsoft Visual Studio, for instance, F5 runs the program in debug mode while CTRL+F5 runs the program in standalone mode. When an exception occurs in standalone mode, the operating system will ask if you want to debug the program or terminate the program. If you choose to debug, then the operating system will ask you to specify your debugger. If the debugger is already running then that will be listed as one of the options but you can choose to use a new instance of the same debugger or choose another debugger entirely (if one is available). Once you select the debugger, the debugger attaches itself to the process and sets up the debugging environment. Provided the program's debug database is available, the debugger will then isolate the problem and present the code to you just as if you'd run the program in debug mode. If the database is not available, the program will be disassembled instead -- you won't have access to the source code.