Testing for presence of array?

2002-02-01 Thread Jamie Jackson
How do you test for the existence of an array (not an array element, but the array itself)? I'm trying to manipulate an array that may or may not exist. Thanks, __ Why Share? Dedicated Win 2000 Server ยท PIII 800 / 256 MB RAM /

RE: Testing for presence of array?

2002-02-01 Thread Andy Parry
cfif IsDefined(myArrayName) cfif IsArray(myArrayName) then you have an array /cfif /cfif -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED]] Sent: Friday, 1 February 2002 4:21 PM To: CF-Talk Subject: Testing for presence of array

RE: Testing for presence of array?

2002-02-01 Thread Pascal Peters
cfif IsDefined(myArray) and if you want to make shure it's an array cfif IsDefined(myArray) AND IsArray(myArray) -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED]] Sent: vrijdag 1 februari 2002 9:21 To: CF-Talk Subject: Testing for presence of array? How do you test

Re: Testing for presence of array?

2002-02-01 Thread Jamie Jackson
2002 9:21 To: CF-Talk Subject: Testing for presence of array? How do you test for the existence of an array (not an array element, but the array itself)? I'm trying to manipulate an array that may or may not exist. Thanks