nooneclose Posted May 28, 2020 Posted May 28, 2020 (edited) I need to dynamically resize my 2d array while looping. I know this code: ReDim $rArray[UBound($rArray) + 1] works for the rows, however, I also need to increase the columns. How would i go about increasing both rows and columns while looping? Edited May 29, 2020 by nooneclose Solved
Moderators Melba23 Posted May 28, 2020 Moderators Posted May 28, 2020 nooneclose, ReDim is a horribly slow function and should be used as sparingly as possible - certainly never in a loop. I suggest that you create the array at a sensible size initially and then only increase it when it gets full. See the final example and paragraph in the Recursion tutorial in the Wiki to see what I mean. As to your specific question, you use very similar syntax to increase the columns: ReDim $rArray[UBound($rArray) + 1][UBound($rArray, 2) + 1] M23 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
nooneclose Posted May 28, 2020 Author Posted May 28, 2020 @Melba23 Thank you for knowledge. I didn't know that ReDim could cause performance issues. the 2d Array i am creating should never be bigger than 20 rows and 20 columns. Should i just make an array [20][20] ?
MattHiggs Posted May 28, 2020 Posted May 28, 2020 23 minutes ago, nooneclose said: @Melba23 Thank you for knowledge. I didn't know that ReDim could cause performance issues. the 2d Array i am creating should never be bigger than 20 rows and 20 columns. Should i just make an array [20][20] ? That seems to be what @Melba23 is suggesting. You can then check to see elements in the array are not used while looping through it using something like If StringIsSpace ( $array[1][1] ) Or $array[1][1] = Null Then nooneclose 1
Moderators Melba23 Posted May 28, 2020 Moderators Posted May 28, 2020 nooneclose, Quote Should i just make an array [20][20] ? With such a small array I would suggest that is the most sensible solution. You will need to keep track of the rows and/or columns that you fill so as to correctly insert the next data point and you could easily use those variables to determine which elements actually hold data. If you can produce some example code i would be happy to look at it and make any suggestions that spring to mind. M23 nooneclose and therks 1 1 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
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