Alors voilà je vous sollicite car je ne trouve pas la réponse de ma recherche.
Je voudrais bloquer la largeur d'une gui et limiter la modification en hauteur
par exemple :
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 600, 400,-1, -1, BitOR($GUI_SS_DEFAULT_GUI,$WS_SIZEBOX))
GUICtrlSetResizing($Form1, $GUI_DOCKAUTO)
$Button1 = GUICtrlCreateButton("Button1", 200, 152, 169, 33)
GUICtrlSetResizing($Button1, $GUI_DOCKAUTO)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 600, 400,-1, -1, BitOR($GUI_SS_DEFAULT_GUI,$WS_SIZEBOX))
GUICtrlSetResizing($Form1, $GUI_DOCKAUTO)
$Button1 = GUICtrlCreateButton("Button1", 200, 152, 169, 33)
GUICtrlSetResizing($Button1, $GUI_DOCKAUTO)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Est-ce possible ?
Merci