quote:
Originally posted by SpunkyLoveMuff
and often doesn't give the relevant HEX codes you need meaning you have to trawl google for them.
Actually all constant values are listed in the msdn library too... Granted, you need to search for them seperatly as they are not given in the API descriptions themselfs, but just looking for the constant's name and you'll find the proper values in the msdn library too.
PS: the values given in random pages on the net aren't always the correct ones. And in other cases you need to be very carefully in just copying the values from such random pages as many times they depend on the numerical system used in the language they are used in (signed/unsigned/range of the type, etc). Eg: in VB &HFFFF can actually be -1 in another language or 0xFFFFFFFF in yet another or even indeed be 0xFFFF....