knolle93 Posted August 4, 2018 Posted August 4, 2018 Hey guys im still stucking at my Script from my prevous Thread. Spoiler expandcollapse popupFunc Refresh() IniDelete(@Scriptdir&"\data.ini","Daten") CreateBelegungsliste() $aSBL = "Tag"&@TAB&"Umzüge"&@CRLF & _ArrayToString($Belegungsliste,@TAB,1) GUICtrlSetData($Edit1, $aSBL) EndFunc ;~ CreateBelegungsliste() Func CreateBelegungsliste() ;~ ############################################################## ;~ Some Variables ;~ ############################################################## $inifile = @Scriptdir&"\data.ini" $i = 1 $aOrdnerInhalte = _FileListToArray(@ScriptDir,"*",2) ;~ ############################################################## ;~ Infi Loop ;~ ############################################################## While 1 If $i > $aOrdnerInhalte[0] Then ExitLoop EndIf ;~ write all acquired data to an ini file Local $aDirWA = DirGetSize(@ScriptDir&"\"&$aOrdnerInhalte[$i],1) IniWrite($inifile,"Daten",$aOrdnerinhalte[$i],$aDirWA[1]) ;~ ++1 $i = $i + 1 WEnd ;~ Read ini file and create array out of it to use in gui Global $Belegungsliste = IniReadSection($inifile,"Daten") EndFunc Now I have the following Problem.. First i want to explain what i want to achieve.. I have a FileServer with PDF txt and doc files. The Files are Stored in an Folderstructure (Year/Month/each day or XX-XXdays) Now i want to display the Days and the count of Files in an Gui which works til this point! this is how it looks in the gui but i want the order to look like in the filesystem Is there a way or a "dirty" Workaround to fix the Output of the Array so it fits the numerical sorting? Strings like 25-30 cant be removed from my fileserver I hope you can help me best regards.
Moderators Melba23 Posted August 4, 2018 Moderators Posted August 4, 2018 knolle93, A common question. Convert the numeric elements in the array to actual numbers by using Number() and then AutoIt will sort them numerically. 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
knolle93 Posted August 4, 2018 Author Posted August 4, 2018 2 minutes ago, Melba23 said: knolle93, A common question. Convert the numeric elements in the array to actual numbers by using Number() and then AutoIt will sort them numerically. M23 Will this work even if there are entrys like "9-13" or "22 Vacation"?
BrewManNH Posted August 4, 2018 Posted August 4, 2018 11 minutes ago, knolle93 said: Will this work even if there are entrys like "9-13" or "22 Vacation"? It would take less time to try it and see what the results are rather than asking here. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
Moderators Melba23 Posted August 4, 2018 Moderators Posted August 4, 2018 knolle93, 17 minutes ago, knolle93 said: Will this work even if there are entrys like "9-13" or "22 Vacation"? Almost certainly not as the Number function will crop anything following the digits - sorry, I did not notice you had such elements. I suggest creating an additional column in the array to store the returns from Number and sorting the array on that column before deleting it. See if you can work it out - if not come back and ask again. 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
mikell Posted August 4, 2018 Posted August 4, 2018 Another way - maybe #Include <Array.au3> $s = "1,2,3,4,5,6,7,8,9-13,14,15,16-17,18,19,20,21 Vacation,22 Vacation,25-30" $a = StringSplit($s, ",", 2) _ArrayShuffle($a) _ArrayDisplay($a) $loop = 1 While $loop $loop = 0 For $i = 1 To UBound($a)-1 If Number($a[$i-1]) > Number($a[$i]) Then $loop = _ArraySwap($a, $i-1, $i) Next WEnd _ArrayDisplay($a)
Malkey Posted August 4, 2018 Posted August 4, 2018 Here's mikell's example above functionized, with options. #include <Array.au3> Local $iDesc = 0, $iAlpha = 1 $s = "1,2,3,4,5,6,7,8,9-13,14,15,16-17,18,19,20,21 Vacation,22 Vacation,25-30" $a = StringSplit($s, ",", 2) _ArrayShuffle($a) _ArrayDisplay($a, "Shuffled Arrtay") _ArrayDisplay(_ArraySortANAD($a), "Asc Num Sort") _ArrayDisplay(_ArraySortANAD($a, 1, 0), "Des Num Sort") _ArrayDisplay(_ArraySortANAD($a, 0, 1), "Asc Alph Sort") _ArrayDisplay(_ArraySortANAD($a, 1, 1), "Des Alph Sort") ; Sorts an array Alpha or Numeric and sorts Ascending or Descending. (ANAD) ; Default Ascending Numeric sort. Func _ArraySortANAD($a, $iDesc = 0, $iAlpha = 0) $loop = 1 While $loop $loop = 0 For $i = 1 To UBound($a) - 1 If (Number($a[$i - 1]) > Number($a[$i]) And $iDesc = 0 And $iAlpha = 0) Or _ ; Ascending, Numeric sort (Number($a[$i - 1]) < Number($a[$i]) And $iDesc <> 0 And $iAlpha = 0) Or _ ; Descending, Numeric sort ($a[$i - 1] > $a[$i] And $iDesc = 0 And $iAlpha <> 0) Or _ ; Ascending, Alpha sort ($a[$i - 1] < $a[$i] And $iDesc <> 0 And $iAlpha <> 0) _ ; Descending, Alpha sort Then $loop = _ArraySwap($a, $i - 1, $i) Next WEnd Return $a EndFunc ;==>_ArraySortANAD
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