Show window contents while dragging

106 12
Here's how to enable or disable the "Show window contents while dragging" Windows fature from Delphi code:

~~~~~~~~~~
//To Show window contents while dragging:
SystemParametersInfo
     (SPI_SETDRAGFULLWINDOWS, 1, nil, 0) ;

//To disable this option call the function:
SystemParametersInfo
     (SPI_SETDRAGFULLWINDOWS, 0, nil, 0) ;
~~~~~~~~~~

Delphi tips navigator:
» Life Cycle Of A Form « Show window contents while dragging

Source...
Subscribe to our newsletter
Sign up here to get the latest news, updates and special offers delivered directly to your inbox.
You can unsubscribe at any time

Leave A Reply

Your email address will not be published.