The hook procedure of a Color dialog box can send the SETRGBSTRING registered message to the dialog box to set the current color selection.
MessageID = RegisterWindowMessage(SETRGBSTRING);
wParam = 0;
lParam = (COLORREF) rgbColor;
No return value.
If rgbColor matches one of the basic colors or one of the 16 custom colors, the dialog box procedure selects that color. The dialog box procedure also updates all the controls in the custom color extension of the Color dialog box, if it is open.
If rgbColor does not match a basic or custom color, the dialog box procedure does not change the current color selection, but it does update the custom color controls, if they are visible.
For example, the following sample code gets the SETRGBSTRING message identifier and then sets the color selection to blue.
UINT uiSetRGB; uiSetRGB = RegisterWindowMessage(SETRGBSTRING); SendMessage(hwndDlg, uiSetRGB, 0, (LPARAM) RGB(0, 0, 255));
RegisterWindowMessage, RGB, SendMessage
file: /Techref/os/win/api/win32/mess/src/msg16_1.htm, 2KB, , updated: 2000/4/7 11:20, local time: 2024/11/7 10:37,
52.14.84.137:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://techref.massmind.org/techref/os/win/api/win32/mess/src/msg16_1.htm"> SETRGBSTRING</A> |
Did you find what you needed? |
Welcome to massmind.org! |
Welcome to techref.massmind.org! |
.