uda Posted November 21, 2007 Posted November 21, 2007 hello! I my code i use _ArrayDelete( $ridl, $Ind ) how can i check that the array is not empty after the delete? how do i get array size? Thanks
weaponx Posted November 21, 2007 Posted November 21, 2007 Ubound($array, 0) retrieves number of dimensions Ubound($array, 1) returns # of elements in first dimension Ubound($array, 2) returns # of elements in second dimension etc..
randallc Posted November 21, 2007 Posted November 21, 2007 Hi, ubound, or arraydisplay? Best, Randall ExcelCOM... AccessCom.. Word2... FileListToArrayNew...SearchMiner... Regexps...SQL...Explorer...Array2D.. _GUIListView...array problem...APITailRW
PsaltyDS Posted November 22, 2007 Posted November 22, 2007 From the help file under _ArrayDelete():RemarksIf the array passed in has only 1 element, this function returns an empty string.So IsArray($ridl) is enough to test it. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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