DanLap
12-19-2002, 09:50 PM
I am looking for a way to test if something is an object.
I have an array and I need a test function that would check if a proposed value exist in that array. I tried this:
if (name_of_array[value]!=Null) {process to execute} else {}
but I get this message: name_of_array[value] has a Null value or is not an object.
I would like to test if "name_of_array[value]" is an object and then do some thing else.
Any one has an idea?
I have an array and I need a test function that would check if a proposed value exist in that array. I tried this:
if (name_of_array[value]!=Null) {process to execute} else {}
but I get this message: name_of_array[value] has a Null value or is not an object.
I would like to test if "name_of_array[value]" is an object and then do some thing else.
Any one has an idea?