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(tabid,'_findRow',list,row);
   if (row > 0) then do;
     call send(tabid,'_getColumnText','staten',charval);
     call send(tabid,'_get_column_value_','state',numval);
     put row= charval= numval=;
   end;
   rc=dellist(list);
return;