App crash Error

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Aroidan
Posts: 6
Joined: Sun Apr 15, 2007 3:52 am

App crash Error

Post by Aroidan »

Greetings, I am having trouble getting an application to run. It appears to be crashing as soon as I try to use an object from the irrlicht libraries. I am coding in C# using the Sharp Develop IDE on Vista.

The crash details are:

Description:
Stopped working

Problem signature:
Problem Event Name: APPCRASH
Application Name: MonkiesRUs.exe
Application Version: 0.0.0.0
Application Timestamp: 46226551
Fault Module Name: KERNEL32.dll
Fault Module Version: 6.0.6000.16386
Fault Module Timestamp: 4549d328
Exception Code: e0434f4d
Exception Offset: 00000000000233ac
OS Version: 6.0.6000.2.0.0.256.1
Locale ID: 1033



Here is my source code:

Code: Select all

using System; 
using Irrlicht; 
using Irrlicht.Video; 
using Irrlicht.Core;
using Irrlicht.Scene;


namespace HelloWorld
{
  class Example
  {
   [STAThread]
   static void Main(string[] args)
   {
   	try{
   		Console.Write("Sucker");
   		
   		DriverType dType;
   		
   		Console.ReadLine();
   		
   	}
   	catch(Exception e)
   	{
   		Console.WriteLine(e.Message);
   	}

   }

  }

}
As you can see I have the code wrapped in a try catch which should stop the error from popping and instead write the message to the console. However that does not seem to be working. Also I have the three DLLs coppied to the debug folder.

Can someone please help? Been working on this issue for about a day now and it is getting highly annoying.
Post Reply