Quote: "Have you looked at the instructions ?"
I meant C++ stuff.. the GDK is real handy at listing all the darkbasic stuff, thanks.
Yeah the tutorials are nice, mostly just trying to figure out the C++ equivilant of the darkbasic stuff.. like in dbpro you'd do something like
type stuff
integer thingya
float thingyb
string thingyc
endtype
dim thisarray(something) as stuff
and that turns out to be something like
struct stuff
{
int thingya
float thingyb
string thingyc
};
stuff thisarray[something]
Something along those lines.
Thanks anyway, i'll keep reading.