hi ppl! i'm here again >.<" i'm getting problem with my stringsplit() function look the example code: GUICreate("Gui Test", 300, 300, -1, -1)
Local $listview = GUICtrlCreateListView("Teste", 0, 0, 300, 300)
Local $string = "string1|string2|string3|string4" & @CRLF & _
"string5|string6|string7|string8"
Local $splited = StringSplit($string, @CRLF, 1)
For $i = 1 To $splited[0]
GUICtrlCreateListViewItem($splited[$i], $listview)
Next
GUISetState()
Sleep(5000)
Exit in the listview only enters a "String1" and "String 5" not a "string1|string2|string3|string4" and "string5|string6|string7|string8" what would be correct! anyone can look this for me? thanks a lot!