Jump to content

_ArrayDisplay after loop?


Recommended Posts

I want to display _ArrayDisplay after the For loop

#include <File.au3>
#include <Array.au3>

Local $FolderList = @ScriptDir
Local $len = 259
Local $aRec = ""
Local $AllFilesFolder

$AllFilesFolder = _FileListToArrayRec($FolderList, "*", $FLTAR_FILES, $FLTAR_RECUR, $FLTAR_SORT, $FLTAR_FULLPATH)
If IsArray($AllFilesFolder) Then
    For $i = 1 To $AllFilesFolder[0]
        If StringLen($AllFilesFolder[$i]) > $len Then
            $aRec &= $AllFilesFolder[$i] & @CRLF
        EndIf
    Next
    ConsoleWrite($aRec & @CRLF) ;No problem
    MsgBox(48,"Files folders length is more than 259", $aRec) ;No problem
    _ArrayDisplay($aRec, " Files folders length is more than 259") ;problem!
EndIf

 

Link to comment
Share on other sites

  • Moderators

youtuber,

As $aRec is not an array but a string, why would you expect _ArrayDisplay to work? If you were to use StringSplit on $aRec before the _ArrayDisplay call then you would then have an array to pass to the function.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

I added but failed

$AllFilesFolder = _FileListToArrayRec($FolderList, "*", $FLTAR_FILES, $FLTAR_RECUR, $FLTAR_SORT, $FLTAR_FULLPATH)
If IsArray($AllFilesFolder) Then
    For $i = 1 To $AllFilesFolder[0]
        If StringLen($AllFilesFolder[$i]) > $len Then
            $aRec &= StringSplit($AllFilesFolder[$i],@CRLF)
        EndIf
    Next
    ConsoleWrite($aRec & @CRLF) ;No problem
    MsgBox(48,"Files folders length is more than 259", $aRec) ;No problem
    _ArrayDisplay($aRec, " Files folders length is more than 259") ;problem!
EndIf

 

Link to comment
Share on other sites

As Melba23 pointed out $aRec is a string,, use something like _ArrayAdd to create an array or just use the $AllFilesFolder Array for example:

#include <File.au3>
#include <Array.au3>

Local $FolderList = @ScriptDir
Local $len = 259
Local $AllFilesFolder

$AllFilesFolder = _FileListToArrayRec($FolderList, "*", $FLTAR_FILES, $FLTAR_RECUR, $FLTAR_SORT, $FLTAR_FULLPATH)
If IsArray($AllFilesFolder) Then
    For $i = $AllFilesFolder[0] To 1 Step - 1
        If StringLen($AllFilesFolder[$i]) <= $len Then _ArrayDelete($AllFilesFolder, $i)
    Next
    $AllFilesFolder[0] = UBound($AllFilesFolder) - 1
    MsgBox(48,"Files folders length is more than 259", _ArrayToString($AllFilesFolder, @CRLF, 1)) ;No problem
    _ArrayDisplay($AllFilesFolder, " Files folders length is more than 259") ;problem!
EndIf

 

Edited by Subz
Link to comment
Share on other sites

I believe it is the multiple _ArrayDelete that's taking more time.  Just use your code with a StringSplit like this :

#include <File.au3>
#include <Array.au3>

Local $FolderList = @ScriptDir
Local $len = 259
Local $aRec = ""
Local $AllFilesFolder

$AllFilesFolder = _FileListToArrayRec($FolderList, "*", $FLTAR_FILES, $FLTAR_RECUR, $FLTAR_SORT, $FLTAR_FULLPATH)
If IsArray($AllFilesFolder) Then
    For $i = 1 To $AllFilesFolder[0]
        If StringLen($AllFilesFolder[$i]) > $len Then
            $aRec &= $AllFilesFolder[$i] & @LF
        EndIf
    Next
    ConsoleWrite($aRec) ;No problem
    MsgBox(48,"Files folders length is more than 259", $aRec) ;No problem
    $aRec = StringSplit ($aRec, @LF)
    _ArrayDisplay($aRec, " Files folders length is more than 259") ;NO MORE problem!
EndIf

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...