gadelat Posted September 12, 2013 Share Posted September 12, 2013 Is there a way? I'm not talking about my own GUIs, but rather windows of different programs. The only way i can think about now is to periodically check window size and if it changed, change it back through WinMove. Is there more proper way? Link to comment Share on other sites More sharing options...
Solution DW1 Posted September 12, 2013 Solution Share Posted September 12, 2013 I would suggest modifying the windows style with _WinAPI_SetWindowLong() #include <WinAPI.au3> #include <Constants.au3> #include <WindowsConstants.au3> $hWnd = WinGetHandle("Untitled - Notepad") _WinAPI_SetWindowLong($hWnd, $GWL_STYLE, BitXOR(_WinAPI_GetWindowLong($hWnd, $GWL_STYLE), $WS_SIZEBOX)) gadelat 1 AutoIt3 Online Help Link to comment Share on other sites More sharing options...
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