hunt Posted October 13, 2010 Posted October 13, 2010 How to lock the window to avoid repainting on C++ (C++ Builder 6)?
PsaltyDS Posted October 13, 2010 Posted October 13, 2010 (edited) Guessing, 'cause I'm not a C-guy, but is it just SendMessage with WM_SetRedraw? Edited October 13, 2010 by PsaltyDS Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
hunt Posted October 13, 2010 Author Posted October 13, 2010 (edited) I find solution, easiest way: LockWindowUpdate(Form1->Handle) LockWindowUpdate(NULL) Edited October 13, 2010 by hunt
hunt Posted October 14, 2010 Author Posted October 14, 2010 Best way: PAINTSTRUCT ps; BeginPaint(Form1->Handle, &ps); LockWindowUpdate(Form1->Handle); ... LockWindowUpdate(NULL); EndPaint(Form1->Handle, &ps); With this way other windows will redrawn without flicker
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now