Brenda1 Posted April 10, 2008 Posted April 10, 2008 Hello guys, can someone help me with this: I have this code: _FileReadToArray ( "HRInfo.csv", $barray ) $Pos = _ArraySearch ($barray, $Name, 0, 0, 0, True) Select Case $Position = -1 MsgBox(0, "Not Found", '"' & $Name & '" was not found in the array.') Case Else MsgBox(0, "Found", '"' & $Name & '" was found in the array at pos ' & $Pos & ".") MsgBox(0,"",$barray[$Pos]) EndSelect as you can see, if the entry is found I got the position in the array, and the stored information in that position is something like this: employeeNumber;EmployeeName, I want to separate this information, in a different variable like this: $var1= employeeNumber $var2=EmployeeName. any advice???
weaponx Posted April 10, 2008 Posted April 10, 2008 any advice??? Heres some advice, don't create a new topic when I provided the answer for you in an existing topic.
Brenda1 Posted April 10, 2008 Author Posted April 10, 2008 (edited) Heres some advice, don't create a new topic when I provided the answer for you in an existing topic.yes, sorry about that, but I didn't see the answer after create a new post. I found the solution and put it in the other post!thanks Edited April 10, 2008 by Brenda1
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