Posts
 
Reputation
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
~3K People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for cambalinho

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, …

Member Avatar for pmmarc
0
3K

The End.