ivan Posted February 15, 2009 Posted February 15, 2009 (edited) How do I resize a Rebar control, better if dynamically I have tried pretty much all the techniques in the helpfile for resizing a control to no avail, and I searched the forum for resizing a rebar control and I am almost about to abandon the idea of resizing my gui, as I need the rebar badly. This is taken from the helpfile for the creation of a rebar control, and I added a statusbar for resizing the gui. As I resize the gui the rebar stay fixed in their last position (even in I set GUICtrlSetResizing) Thanks for any halp IVAN expandcollapse popup#AutoIt3Wrapper_Au3Check_Parameters=-d -w 1 -w 2 -w 3 -w 4 -w 5 -w 6 #include <GuiReBar.au3> #include <GuiToolBar.au3> #include <GuiComboBox.au3> #include <GuiDateTimePicker.au3> #include <WindowsConstants.au3> #include <Constants.au3> #include <GuiConstantsEx.au3> #include <GuiStatusBar.au3> Opt("MustDeclareVars", 1) $Debug_RB = False Global $hgui, $hReBar, $hStatus _Main() Func _Main() Local $hgui, $btnExit, $hToolbar, $hCombo, $hDTP, $hInput Local Enum $idNew = 1000, $idOpen, $idSave, $idHelp Local $aParts[3] = [75, 150, -1] $hgui = GUICreate("Rebar", 400, 396, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_SIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_SYSMENU, $WS_MAXIMIZEBOX)) $hStatus = _GUICtrlStatusBar_Create($hgui) ;=============================================================================== _GUICtrlStatusBar_SetParts($hStatus, $aParts) ; create the rebar control $hReBar = _GUICtrlRebar_Create($hgui, BitOR($CCS_TOP, $WS_BORDER, $RBS_VARHEIGHT, $RBS_AUTOSIZE, $RBS_BANDBORDERS)) ; create a toolbar to put in the rebar $hToolbar = _GUICtrlToolbar_Create($hgui, BitOR($TBSTYLE_FLAT, $CCS_NORESIZE, $CCS_NOPARENTALIGN)) ; Add standard system bitmaps Switch _GUICtrlToolbar_GetBitmapFlags($hToolbar) Case 0 _GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_SMALL_COLOR) Case 2 _GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_LARGE_COLOR) EndSwitch ; Add buttons _GUICtrlToolbar_AddButton($hToolbar, $idNew, $STD_FILENEW) _GUICtrlToolbar_AddButton($hToolbar, $idOpen, $STD_FILEOPEN) _GUICtrlToolbar_AddButton($hToolbar, $idSave, $STD_FILESAVE) _GUICtrlToolbar_AddButtonSep($hToolbar) _GUICtrlToolbar_AddButton($hToolbar, $idHelp, $STD_HELP) ; create a combobox to put in the rebar $hCombo = _GUICtrlComboBox_Create($hgui, "", 0, 0, 120) _GUICtrlComboBox_BeginUpdate($hCombo) _GUICtrlComboBox_AddDir($hCombo, @WindowsDir & "\*.exe") _GUICtrlComboBox_EndUpdate($hCombo) ; create a date time picker to put in the rebar $hDTP = _GUICtrlDTP_Create($hgui, 0, 0, 190) ; create a input box to put in the rebar $hInput = GUICtrlCreateInput("Input control", 0, 0, 120, 20) ; default for add is append ; add band with control _GUICtrlRebar_AddBand($hReBar, $hCombo, 120, 200, "Dir *.exe") ; add band with date time picker _GUICtrlRebar_AddBand($hReBar, $hDTP, 120) ; add band with toolbar to begining of rebar _GUICtrlRebar_AddToolBarBand($hReBar, $hToolbar, "", 0) ;add another control _GUICtrlRebar_AddBand($hReBar, GUICtrlGetHandle($hInput), 120, 200, "Name:") $btnExit = GUICtrlCreateButton("Exit", 150, 340, 100, 25) GUIRegisterMsg($WM_SIZE, 'WM_SIZE') GUISetState(@SW_SHOW) While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE, $btnExit Exit EndSwitch WEnd EndFunc ;==>_Main Func WM_SIZE($hWnd, $iMsg, $iwParam, $ilParam) _GUICtrlStatusBar_Resize($hStatus) EndFunc Edited February 15, 2009 by ivan Think out of the boxGrabber: Yet another WinInfo tool_CSVLib (still alpha)Dynamic html in au3
ivan Posted February 15, 2009 Author Posted February 15, 2009 (edited) ControlMove worked Edited February 15, 2009 by ivan Think out of the boxGrabber: Yet another WinInfo tool_CSVLib (still alpha)Dynamic html in au3
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