where to find NM_CUSTOMDRAW in VS2005
-
I am not able to find the NM_CUSTOMDRAW message in messages. How to add this message handler to the project?
-
I am not able to find the NM_CUSTOMDRAW message in messages. How to add this message handler to the project?
You won't get WM_CUSTOMDRAW message for all the controls.. and also to customize the control you have to derive your own control class from the control base class
Do your Duty and Don't expect the Result
-
You won't get WM_CUSTOMDRAW message for all the controls.. and also to customize the control you have to derive your own control class from the control base class
Do your Duty and Don't expect the Result
Thanks for your reply. I am using WM_CTLCOLOR to change the checkbox caption text color. That is working fine when themes service is stopped. When it is enabled it is not working. Some one suggested in this site to use NM_CUSTOMDRAW for that. That's why i am trying. If this doesn't can you suggest me an alternate way to change the checkbox caption text color when windows themes is on? Thanks in advance. Regards
-
Thanks for your reply. I am using WM_CTLCOLOR to change the checkbox caption text color. That is working fine when themes service is stopped. When it is enabled it is not working. Some one suggested in this site to use NM_CUSTOMDRAW for that. That's why i am trying. If this doesn't can you suggest me an alternate way to change the checkbox caption text color when windows themes is on? Thanks in advance. Regards
-
This is a fix in SP1: install the SP1 for VS2005. You need also the redist files for the setups.
Greetings from Germany
I checked it today. SP1 is already installed. But i am not able to change the text color when themes service is enabled. Any help?