Archive for June, 2008
Randomly Corrupting msobj80.dll file solution
Thursday, June 19th, 2008How to setup FLTK on windows system
Wednesday, June 18th, 20081) get Visual studio full versions – The express ones don’t work.
2)download the fltk package and then build the solution file present in the vc2005 directory. This will populate the /lib directory with real libraries for the current system.
3)create your project solution in a different directory
4)copy the following directories from the fltk package directory into the directory with your projects .sln file – (/lib, /zlib, /png, /vc2005, /FL)
5) in the general tab of your projects properties add the following additional include directories (..\vc2005;..\zlib;..\png;..\jpeg;)
6)in the input field of the linker add the following required libraries (fltkd.lib wsock32.lib comctl32.lib glu32.lib opengl32.lib wsock32.lib fltkgld.lib)
7)add the following additional library directory (..\lib)
in the general tab of the linker change incremental linking to “no”
9) finally if you are on vista and wish to use openGL you probably have to install the platform SDK from Microsoft.
Gonna need some help on monday
Sunday, June 15th, 2008Solution and better problem description. – The problem was actually an improperly declared method signiture for the overloaded comparision operator. I was declaring them outside the class they were supposed to be used with when in fact they needed to be inside the class definition just like any other method.
C++ is evil
Saturday, June 14th, 20086/11/08 AIIDE accepted/DEACCON progressing
Wednesday, June 11th, 2008DEACCON is starting to move foward now that everything is compiling(and more importantly – Linking). I am building my openGL window at the moment.