Jump to content

Daclare Array?


BrettF
 Share

Recommended Posts

How can i declare the array $ListItem in this Snippit?? I've never used arrays before.....

Func _TXTCreateListItem($fileuse,$list)
    _FileReadToArray ($fileuse, $ListItem)
    For $x = 1 to $ListItem[0]
    GUICtrlCreateListViewItem ($ListItem[$x], $LIST)
    Msgbox(0,'Record:' & $x, $ListItem[$x])
Next
EndFunc
Link to comment
Share on other sites

  • Moderators

Func _TXTCreateListItem($fileuse,$list)
    Local $ListItem
    If Not _FileReadToArray ($fileuse, $ListItem) Then Return SetError(1, 0, '')
    For $x = 1 to $ListItem[0]
        GUICtrlCreateListViewItem ($ListItem[$x], $LIST)
        Msgbox(0,'Record:' & $x, $ListItem[$x])
    Next
EndFunc

Edit:

I was thinking originally, "_FileListToArray()

Edited by SmOke_N

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

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...