Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: The WM_PAINT message is sent when the window opens and when the system wants to repaint it. You can send it by calling the UpdateWindow or RedrawWindow function. Example: case WM_CREATE: Button1 = CreateWindow( _T("BUTTON"); _T("click here"); WS_CHILD | WS_VISIBLE | WS_TABSTOP | SS_NOTIFY | SS_LEFT, 10, 10, 150, 25, … |
The End.