Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

repaint

Status
Not open for further replies.

dhara77

Technical User
May 23, 2002
11
IN
how do we redraw the whole window.can someone can sugges a list of API's or functions
 
BOOL RedrawWindow(
HWND hWnd, // handle of window
CONST RECT *lprcUpdate,
// address of structure with update rectangle
HRGN hrgnUpdate, // handle of update region
UINT flags // array of redraw flags
);


this one popped up on MSDN after typing redraww in the index. please use your documentation lest you should post lame questions
 
you might try updating the window:

BOOL UpdateWindow(
HWND hWnd // handle to window
);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top