Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
6answers
470 views

How to refactor VB6 code to prevent run-time errors

A VB6 app is experiencing a run-time errors at a variety of places. I know this is the result of poor error handling, but is it possible to analyse the code to see where it is susceptible to run-time ...
2
votes
3answers
259 views

ASP.Net web site gets burst of requests that crashes IIS worker process

I'm running a fairly high volume asp.net web site across a two serve cluster. Typical load is around 20 requests/second per server as logged by the ASP.Net Apps performance object. At periodic times ...
2
votes
0answers
1k views

Silverlight Runtime Error 1001

So I have a deployed Silverlight app that works fine on most client machines. However, I have 1 client machine (Windows Vista / IE8) that throws the following javascript error: Webpage error ...
2
votes
3answers
241 views

How to work around needing to update a dictionary

I need to delete a k/v pair from a dictionary in a loop. After getting RuntimeError: dictionary changed size during iteration I pickled the dictionary after deleting the k/v and in one of the outer ...
1
vote
1answer
83 views

Redirect RuntimeError to log instead of console in wxPython?

How do I redirect RuntimeError to log instead of the console? In the code below, the 'Hello' is printed to console, which is redirected to the wx.TextCtrl. The RuntimeError raised OnClose is printed ...
1
vote
5answers
752 views

Java Runtime.getRuntime() problem

I'm having some problems with getting the .getruntime.exec() to work properly. Here is the code dealing with that part: while (line != null) { String name = line; String commandFull = ...
0
votes
2answers
94 views

Passing arguments by pass-by-reference to a swap function

I encountered this problem while solving a practice test Consider the following code written in a pass-by-reference language like FORTRAN and these statements about the code subroutine swap(ix,iy) ...
0
votes
1answer
95 views

How can i solve this Crystal reports error?

I have just completed developing my web application. I was trying to deploy it to test it. When i was doing that It first gave me crystal reports related assemblies missing error then I took all Cr ...
0
votes
1answer
163 views

Runtime error 3825 in MS Access

I am trying to merge 5 databases into one. The 5 databases have the same tables , same structure and same field for each tables and the same name for the tables and fields well. Just that the data in ...
0
votes
4answers
528 views

why's this program giving a runtime error on jcreator but not on netbeans?

This is my solution for sphere's online judge palin problem. It runs fine on Netbeans, but the judge is rejecting my answer saying it gives a RuntimeError. I tried it on JCreator and it says: ...
0
votes
3answers
188 views

What is the error in this code?

I have created a code in C++ that is supposed to display an O and an X, and you can move the O with w/a/s/d, and the X moves randomly. It compiles fine, but when I run it, there is an O, but no X. I ...