difficile fare esempi di codice.....quando si hanno poche info....

comunque sul click del pulsante fai....

conn.open
strSQL = "select codfiscale from mia tabella"
rs.open conn,strSQL,3,2

if not (rs.BOF and rs.EOF) then
do while not rs.EOF
call CONTROLLACODFISCALE(rs(o),esito)
if esito = "OK" then......
rs.movenext
loop
end if

...
etc

che ne pensi????