turbox Posted August 7, 2008 Posted August 7, 2008 How i can get the string from the thir column of the seccond row? (i converted a table to array) can somebody help?
Glyph Posted August 7, 2008 Posted August 7, 2008 third column second row of a listview? tolle indicium
Zedna Posted August 7, 2008 Posted August 7, 2008 (edited) Maybe: $string = $array[2][3] Post your code (where you are creating your array) Edited August 7, 2008 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
turbox Posted August 7, 2008 Author Posted August 7, 2008 $frame = _IEFrameGetObjByName($aIE, "main") $tables = _IETableGetCollection($frame, 11) $array = _IETableWriteToArray($tables)
Zedna Posted August 7, 2008 Posted August 7, 2008 (edited) $frame = _IEFrameGetObjByName($aIE, "main") $tables = _IETableGetCollection($frame, 11) $array = _IETableWriteToArray($tables) If @error Then MsgBox(0,'Error', @error) Else $string = $array[2][3] End If Edited August 7, 2008 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
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