1
vote
1answer
12 views
Disable Microsoft Visual C++ Runtime Error
If my application crashes, a Microsoft Visual C++ Runtime Library "Runtime Error!" occurs.
The text of the message is:
This applicaton has requested the Runtime to terminate in an unusual way.
Please …
0
votes
1answer
72 views
Foundations of F# example code does not compile, why?
I am reading the Foundations of F# by Robert pickering. When I try to run the first example in the book (below) I am getting a runtime error at function print, "Unable to parse format string 'Missing …
2
votes
2answers
86 views
Challenging Runtime Error when calling Native Code from Managed Code
First_Layer
I have a win32 dll written in VC++6 service pack 6. Let's call this dll as FirstLayer. I do not have access to FirstLayer's source code but I need to call it from managed
code. The …
0
votes
5answers
112 views
printf((char *) i); runtime error? (i as integer)
In a for loop, I am trying to use printf to print the current i value. This line: printf((char *) i); is giving me runtime errors. Why is this?!
Below is a quick fizzbuzz solution that is doing …
0
votes
2answers
54 views
NoClassDefFoundError: javax/swing/GroupLayout$Group on Mac Computer
I am having a runtime error ONLY when I test my Java program on a mac computer. It tests perfectly fine on various Windows operating systems. This is the error message I get on a Mac computer...
…
0
votes
1answer
45 views
Problematic Wicket RuntimeException
I'm having trouble pinning down the cause of a RuntimeException in a Wicket application. I've set numerous breakpoints, but none are firing when I submit my form, only when the form is loading. …
0
votes
1answer
33 views
Error 3709 in VBA/macros
A runtime error of 3709 keeps popping up when I run this part of the program. Does anyone know what I can do to fix it?
Public cn As New ADODB.Connection
Public rs As New ADODB.Recordset
Public …
0
votes
3answers
59 views
Spawning more than one thread in Python causes RuntimeError
I'm trying to add multithreading to a Python app, and thus started with some toy examples :
import threading
def myfunc(arg1, arg2):
print 'In thread'
print 'args are', arg1, arg2
thread …
1
vote
1answer
150 views
Excel VBA 424 Object Required Runtime Error
As an exercise, I'm trying to set all the values in the range A1:V35 to "omg".
The following code produces an error:
Sub ktr()
Dim colIndex As Integer
Dim rowIndex As Integer
Dim …
0
votes
5answers
149 views
Java NullPointerException
I'm writing two classes to handle simple auctions. I have a class ready and working, which handles the operations for a single auction, and now I'm writing another class like an auction house, to keep …
0
votes
1answer
391 views
hitTestObject collision detection not working in as3!
I am trying to create a platformer game and i am trying to make "player1" stop when it hits a "platform". here is my code so far,
gotoAndStop("gameStart");
import flash.display.MovieClip;
import …
0
votes
3answers
144 views
Intermittent Runtime Error in IE7: Occurred at line 0, Object required? Huh?
A site I am working on displays an intermittent runtime error but only in IE7 and 8. This error will appear almost randomly (like, it may pop up on initial page load one time or it may not pop up …
0
votes
1answer
202 views
Error 70 in Excel VBA
Hi,
I am trying to upload directly a picture/chart from excel to a Sharepoint group URL. Here is the script:
Sub ExportChartJPG()
ActiveChart.Export …
3
votes
3answers
145 views
If I never once reference System.IO in my program, why does my user get an error?
I have a program which doesn't once reference System.I0, coded in vb.net, yet for some reason my user got this:
Description:
Stopped working
Problem signature:
Problem Event Name: CLR20r3
…
2
votes
8answers
2k views
C# compile error: “Invoke or BeginInvoke cannot be called on a control until the window handle has been created.”
I just posted a question about how to get a delegate to update a textbox on another form. Just when I thought I had the answer using Invoke...this happens. Here is my code:
Main Form Code:
using …
