What i am doing is opening a choosecolor() dialog then from the colour the user selects i want to just pick out the BLUE value, and convert it to a integer...
Can someone help?
This is what i have so far...:
CHOOSECOLOR cc;
COLORREF done;
cc.lStructSize = sizeof(CHOOSECOLOR);
cc.hwndOwner = hwnd;
cc.rgbResult = done;
cc.Flags = CC_SOLIDCOLOR;
ChooseColor(&cc);
Thanks in advance
~~Jden