How to disable "Show Window Contents while dragging"
Posted: Fri Aug 07, 2009 2:19 pm
by Tim Duggan >> Wed, 6 Oct 1999 3:05:31 GMT
If you want force the windows in your application to not redraw the contents while dragging or resizing, you may find the following Windows API function useful (it's in user32):-
SystemParametersInfo( SPI_SETDRAGFULLWINDOWS, 0, ..)
Using it can save a bunch of resize events, and fixes any flicker problems by avoiding them altogether. If you're doing some smoke and mirrors stuff with pictures and other controls, this helps you to avoid the ugly side effects, which could otherwise occur while the pictures/controls are being redrawn on the move.
We have used this in the form activate()/deactivate() (and unload) methods so that other apps aren't affected. Here's some code for those who are interested:-
state : Integer;
rc : Boolean;begin
// if full windows drag feature is available then disable it.
rc := call systemParametersInfo( SPI_GETDRAGFULLWINDOWS, 0, state, 0 );
if rc then
fullDragWindowState := state;
// The following call doesn't actually update the value in the ini file, so is temporary anyway.
call systemParametersInfo( SPI_SETDRAGFULLWINDOWS, 0, state, 0 );
endif;
SPI_GETDRAGFULLWINDOWS = 38
SPI_SETDRAGFULLWINDOWS = 37
Regards,
Tim Duggan & Kevin Douglas
If you want force the windows in your application to not redraw the contents while dragging or resizing, you may find the following Windows API function useful (it's in user32):-
SystemParametersInfo( SPI_SETDRAGFULLWINDOWS, 0, ..)
Using it can save a bunch of resize events, and fixes any flicker problems by avoiding them altogether. If you're doing some smoke and mirrors stuff with pictures and other controls, this helps you to avoid the ugly side effects, which could otherwise occur while the pictures/controls are being redrawn on the move.
We have used this in the form activate()/deactivate() (and unload) methods so that other apps aren't affected. Here's some code for those who are interested:-
state : Integer;
rc : Boolean;begin
// if full windows drag feature is available then disable it.
rc := call systemParametersInfo( SPI_GETDRAGFULLWINDOWS, 0, state, 0 );
if rc then
fullDragWindowState := state;
// The following call doesn't actually update the value in the ini file, so is temporary anyway.
call systemParametersInfo( SPI_SETDRAGFULLWINDOWS, 0, state, 0 );
endif;
SPI_GETDRAGFULLWINDOWS = 38
SPI_SETDRAGFULLWINDOWS = 37
Regards,
Tim Duggan & Kevin Douglas