Hi all,
Can anyone help me on this .
Currently i'm write to .txt file. How to change it to Array.
For $i = 0 To $Num
$open = FileOpen("C:\temp\recipe.txt",1)
$MYEditText = _GUICtrlListBox_ClickItem ($LHandle,$i)
$MyWantedText1 = ControlGetText($Handle,"","")
$MyWantedText1 = StringStripWS($MyWantedText1, 1)
$MyWantedText1 = StringStripWS($MyWantedText1, 2)
$file = FileWrite($open,$MyWantedText1 & @CRLF) ;(Write test at .txt)
FileClose($open)
Next
Thanks