Skip to content
⌘ NSIS Forum Archive

HWND resize

5 posts

dkwasiborski#

HWND resize

Hello,

If someone have the solution to resize dynamically the hwnd of the nsis installer.
thanks
kichik#
WM_SIZE is only a notification. You have to call SetWindowPos or MoveWindow with the System plug-in to resize the window.
Joel#
Originally posted by kichik
WM_SIZE is only a notification. You have to call SetWindowPos or MoveWindow with the System plug-in to resize the window.
I know, but you can send that notification to your app w/o problem....

Although, SetWindowPos or MoveWindow are also good 🙂
kichik#
You can send it, but it shouldn't do anything. It's a notification sent after the size has been changed.
The WM_SIZE message is sent to a window after its size has changed.