rod143 How do I cheat?
Reputation: 0
Joined: 15 Sep 2009 Posts: 5
|
Posted: Wed Jan 06, 2010 3:59 am Post subject: Help Visual style MAkes the text in check boxes disappear |
|
|
I need Help
im using This visual style but it collides with this code:
| Code: | | #pragma comment(linker,"/manifestdependency:\"type='win32' ...... |
i cant post the whole one... OMG
| Code: | case WM_CTLCOLORSTATIC:
{
HDC hdcStatic = (HDC)wParam;
SetTextColor(hdcStatic, RGB(0, 255, 0));
SetBkMode(hdcStatic, TRANSPARENT);
return (LONG)g_hbrBackground;
}
break;
|
its effect on check boxes.. the text that is in check boxes disappears.... and the background color will show.... can any one help me on this.... I tried removing the visual style and check boxes is fine but buttons will look like shit too... I need to have the visual style cus it gives beauty to the push buttons.....
|
|