You are not logged in. You can browse in the PowerBASIC Community, but you must click Login (top right) before you can post. If this is your first visit, check out the FAQ or Sign Up.
I start a program by changing %HKEY_CURRENT_USER\Control Panel\Desktop\DragFullWindows from "1" to "0" to avoid automatic resizing of windows when dragging. The problem is that it has no effect until windows looks down in the registry. How do i force windows to update its desktop - settings?
Nop,
this is the wrong way. You'll need to do it like in the following example:
Code:
SUB SETWINSTATE ALIAS "SetWinMoveState" (BYVAL NewState AS LONG) EXPORT
NewState = ABS(NewState)
SystemParametersInfo %SPI_SETDRAGFULLWINDOWS, NewState, 0, %SPIF_SENDWININICHANGE
END SUB
Hope this will help.
PS: You can change the state as often as you want without rebooting the system.
Peter
------------------
[This message has been edited by Peter Patzwaldt (edited June 14, 2000).]
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment