misioooo Posted August 28, 2014 Posted August 28, 2014 (edited) I am doing ReDim of this 3D array (1st dimension) and it works... But cant get 2nd dim to redim. Hello! I have something like this: Dim $controls[1][1][1];1st dim holds group, 2nd dim holds no of monitors, 3rd dim holds IDs of all controls for monitor ... Func _AddMonitor() $i = GUICtrlRead($tabGroups,1) $tab_index = GUICtrlRead($tabGroups) GUISwitch($gui_main,$i) $monitors[$tab_index] = $monitors[$tab_index]+1 ;in this array is number of monitors for each group (group no is array index) $mon = $monitors[$tab_index] ReDim $controls[UBound($controls)][UBound($controls,1)+1][UBound($controls,2)] ;I JUST WANT TO INCREASE 2nd DIMENSION BOUNDS BY 1 MsgBox(0,"",$monitors[$tab_index]) $controls[$groups-1][$monitors[$tab_index]][$MANUFACTURER] = GUICtrlCreateCombo("",40,160+20+$y_offset) ;ERROR HERE DUE TO SUBSCRIPT OR OUT OF BOUNDS $controls[$groups-1][$monitors[$tab_index]][$MODEL] = GUICtrlCreateCombo("",40+120,160+20+$y_offset) EndFunc Edited August 28, 2014 by misioooo
Moderators Melba23 Posted August 28, 2014 Moderators Posted August 28, 2014 misiooooYou are using the wrong "Dimension" parameters for the UBound functions - at present you have "Default (1), 1, 2" when you need "1, 2, 3":Global $aArray[1][1][1] ConsoleWrite(UBound($aArray, 1) & " - " & UBound($aArray, 2) & " - " & UBound($aArray, 3) & @CRLF) ;Read 1 - 1 - 1 ReDim $aArray[UBound($aArray, 1) + 1][UBound($aArray, 2) + 2][UBound($aArray, 3) + 3] ConsoleWrite(UBound($aArray, 1) & " - " & UBound($aArray, 2) & " - " & UBound($aArray, 3) & @CRLF) ; Should read 2 - 3 - 4All clear? M23P.S. Please do not use Dim - it is much better to use Global/Local and be explicit about which scope you require. Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Solution misioooo Posted August 28, 2014 Author Solution Posted August 28, 2014 (edited) Thank You Melba. I have no idea why i missed so obvious error... Probably i was counting from "0" ;P It is working now. Edited August 28, 2014 by misioooo
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