ok, a "solution" that doesn`t make me happy:

it_array[0] = 1;
it_array[1] = 13333;
it_array[2] = 133;
it_array[3] = Null;


a  = False;
for( i = 0; i < 9999; i++ ) 
{  
    a = IsNull(it_array[i]);
    if ( a )
     break;
    else
    {
      .....
      
    }
} 

 -> but leads to the problem with arrays that have  "Null" Values !!!

it_array[0] = 1;
it_array[1] = Null;
it_array[2] = 133;
it_array[3] = Null;


Reply via email to