BrettF Posted January 15, 2007 Posted January 15, 2007 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 Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
Moderators SmOke_N Posted January 15, 2007 Moderators Posted January 15, 2007 (edited) 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 EndFuncEdit:I was thinking originally, "_FileListToArray() Edited January 15, 2007 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.
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