runtime-error

How to tell what .swf generated an error?

I was viewing a page just now and got the error box popup telling me of a runtime error in a .swf The problem is, there are multiple .swfs on the page, and I do not know which one generated the error. Is there a way to tell? ...

Access Violation With Pointers? - C++

Hi, I've written a simple string tokenizing program using pointers for a recent school project. However, I'm having trouble with my StringTokenizer::Next() method, which, when called, is supposed to return a pointer to the first letter of the next word in the char array. I get no compile-time errors, but I get a runtime error which stat...

What are some of the possible causes of "entry point not found" runtime error?

I am trying to compile a program that is created from Visual Studio 8, converted it to Visual Studio 9. After giving all the required .DLL, .lib, and #include directories, I successfully compiled the program. However, when I tried to launch it, it always give out an error: The procedure entry point SwapBuffers could not be located in t...

Rescue RuntimeError in Rake

I have a custom Rakefile which calls different file tasks. Sometimes a file that is expected doesn't exist, and rake throws a RuntimeError and fails. However, I'd like to do a few things before it fails. So is there any way I could rescue a RuntimeError? Or is there some sort of a magic task which gets called before a complete fail? ...

UITableView + UINavigationController = unrecognized selector sent to instance xxxxxxxx?

Hi, I'm creating an app which uses a UINavigationController (which's view's nib is RootViewController.xib) located in MainWindow.xib, and a UITableView in RootViewController.xib. I have this code: MainWindow.xib's UINavigationController TDAppDelegate.h // // To_DoAppDelegate.h // To Do // // Created by Radek Slupik on 14-02-10. ...

How do I prevent InstallShield 1158 errors?

Sometimes, when running an InstallShield installation, an error dialog will appear containing the text "1158", and OK button, and nothing else. InstallShield error 1158 means there was a problem with loading strings from the associated ini file, but their troubleshooting steps have not worked for me. Also, I doubt that there is actually ...

AS3 List issues

I'm trying to add a List object to the stage dynamically, but I always get an error when a certain line is called: input.addItem({label:"test",data:"test"}); Error thrown at runtime: TypeError: Error #2007: Parameter child must be non-null. at flash.display::DisplayObjectContainer/addChildAt() at fl.controls::BaseButton/fl.controls:B...

Scroller object not working in IE7 But Working in IE8

Hi guys, i am having difficulties trying to solve a runtime error that i get in IE7 but its working fine in IE8, it says that this.scroller is nutll or not an object for a scroller that i use.but what surprises me is that it is working on every browser. Please guys i need a solution.if i have not clarified my question please let me know....

Xcode runtime error: ".objc_class_name_CContext", referenced from:

hi, I'm getting this error in Xcode while developing an app for iPhone , what is this error related to, ... what should i do to clear this error? Here CContext and CManager are interface which implement there own protocols.And TestManagerAppDelegate is the interface where i'm creating the object for CContext and CManager and i want to ca...

Error including shared library

Hi there, I am new to g++ and Makefile. I am trying to link this BeBOP SMC library, which is in my lib directory. Under the lib directory are bebop_util and sparse_matrix_converter, both of which have already been built without errors. I see libbebop_util.a, libbebop_util.so under bebop_util and libsparse_matrix_converter.a, libsparse_m...

translate a javascript programme in C

Hello, I have a javascript file, and I want to translate it in C, I did it but I have a big runtime error. Everything work well until the end of the function when it return an int. If you have some ideas where the bug is. Thanks a lot. #ifndef max #define max( a, b ) ( ((a) > (b)) ? (a) : (b) ) #endif char *substring(size_t start, ...

using std::string with Qt causes run-time error on destruction

Hi. I have a Qt app that uses another library where the function output is std::string instead of a QString. So in my program I have a method void doSomething() { ... std::string std_string = MyExternalLibraryThatReturnsSTLstring.getString(); QString myQString = QString::fromStdString(std_string); ... process(myQString); ... } When ...

Can't dispatch DDM chunk 46454154: no handler defined - Eclipse - Android SDK

I'm working on a Windows 7, 64 bit machine, and just downloaded and installed the Android SDK and am using Eclipse with Android plugin. I was just going through the "Hello Android" guide here: Hello, Android I also did the suggestions on this page: Droid FAQ Before following the FAQ, the program would compile and run but wouldn't regi...

VBS Runtime error code 800A01B6

I am a newbie to VBS scripting. I am getting above error on line 54, character 5 in script below. This error says "Object doesn't support this property or method: 'MimeMapArray'". And line it is referring to is: MimeMapArray(i) = CreateObject("MimeMap") Can u tell me what I am doing wrong? Here is the script in its entirety. Not...

Cannot display images in BitmapField in Blackberry application using simulator 9700?

Hi Everybody I am getting Error while displaying bitmap file in my application. code: Bitmap logoBitmap = Bitmap.getBitmapResource("res/icon.png"); BitmapField bitmapField1 = new BitmapField(logoBitmap, Field.FIELD_HCENTER); add(bitmapField1); Getting error in console tab. Error: Fridg:couldnot find res/icon.png. I am using Eclipse wi...

Fatal error by Java runtime environment

I am executing a junit test case I got the following error, A fatal error has been detected by the Java Runtime Environment: Internal Error (classFileParser.cpp:3174), pid=2680, tid=2688 Error: ShouldNotReachHere() JRE version: 6.0_18-b07 Java VM: Java HotSpot(TM) Client VM (16.0-b13 mixed mode windows-x86 ) Can any body pl...

What does "Value does not fall within expected range" mean in runtime error?

Hi, I'm writing a plugin (dll file) using /clr and trying to implement speech recognition using .NET. But when I run it, I got a runtime error saying "Value does not fall within expected range", what does the message mean? public ref class Dialog : public System::Windows::Forms::Form { public: SpeechRecognitionEngine^ sre...

Python Pre-testing for exceptions when coverage fails

I recently came across a simple but nasty bug. I had a list and I wanted to find the smallest member in it. I used Python's built-in min(). Everything worked great until in some strange scenario the list was empty (due to strange user input I could not have anticipated). My application crashed with a ValueError (BTW - not documented in t...

Parameter count does not match Parameter Value count.

Hi, We're getting a server error saying "Parameter count does not match Parameter Value count." Anyone have any idea what this could mean? http://www.oneworldunited.com Our site's on ASP.NET Webforms running DotNetNuke as a CMS. I've tried uploading an older version of the web.config file but it doesn't seem to have changed since th...

MidiSystem.getSequencer() returns Audio Device Unavailable

I've keep having an exception thrown, on and on. When i try to make a new Sequencer object, i keep getting the javax.sound.midi.MidiUnavailableException: Audio Device Unavailable exception. So, here's the code: import javax.sound.midi.*; public class MiniMusicPlayer1 { public static void main(String[] args) { try { Se...