Search found 5 matches

by sgalland
Sun Dec 10, 2006 9:24 am
Forum: Jirr
Topic: Jirr&Netbeans Link Error
Replies: 5
Views: 4888

I had a wierd side effect, the frames per second when compiled from JCreator is 3000FPS, and the frames when compiled from Netbeans is about 25, any idea on what would cause that with the exact same code and the exact same files being added to the linker?
by sgalland
Sun Dec 10, 2006 9:11 am
Forum: Jirr
Topic: Jirr&Netbeans Link Error
Replies: 5
Views: 4888

Hey thanks, in Netbeans 5.5 all I had to do was right click the project, go to properties, go to run, and set my working directory to where my class files are compiling to, copied the DLL's there and whala!

Thanks!
by sgalland
Sun Dec 10, 2006 8:16 am
Forum: Jirr
Topic: Jirr&Netbeans Link Error
Replies: 5
Views: 4888

Jirr&Netbeans Link Error

Hello all, I am trying to compile TestHelloWorld.java in Netbeans and its giving me a link error. I can do it in JCreator just fine but the group of people I am working with made a choice to work in Netbeans and I did add the JAR file to the compile library section. Here is the error: init: deps-jar...
by sgalland
Fri Dec 08, 2006 2:30 pm
Forum: Beginners Help
Topic: Question about Java Enums
Replies: 2
Views: 172

Thanks for the reply, I had a sneaking feeling that I can't treat Java like C++ (or at least I seen a similar example in C++) :o
by sgalland
Fri Dec 08, 2006 3:35 am
Forum: Beginners Help
Topic: Question about Java Enums
Replies: 2
Views: 172

Question about Java Enums

I might be doing this wrong, but I am trying to enumate all the graphics mechanisms in Java with the enum operator: enum GRAPHIC_MODES { NULL=E_DRIVER_TYPE.EDT_NULL, SOFTWARE=E_DRIVER_TYPE.EDT_SOFTWARE, OPENGL=E_DRIVER_TYPE.EDT_OPENGL, DX8=E_DRIVER_TYPE.EDT_DIRECTX8, DX9=E_DRIVER_TYPE.EDT_DIRECTX9 }...