When the first push button is pressed, find the row that has STATE=10 or STATEN="DELAWARE".
BUTTON1:
   row=1;
   list=makelist();
   list=insertc(list,'STATE=10');
   list=insertc(list,'or upcase(staten)=
        "DELAWARE"',-1);
   call send(datid,'_findRow',list,row);
   call send(datid,'_getColumnText',
            'staten',charval);
   call send(datid,'_getColumnValue',
            'state',numval);
   put row= charval= numval=;
   list=dellist(list);
 return;