home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Invenzioni E Inventori 1: Lavoro E Vita Quotidiana
/
invenzioni-inventori-1.iso
/
mac
/
Invenzio
/
index.dir
/
00119_Script_119
< prev
next >
Wrap
Text File
|
1997-10-15
|
1KB
|
41 lines
on controlla_inv
set lista to the text of field "invenzioni" of castlib "indart"
set lista_sotto to the text of field "elenco_sottoinv" of castlib "indart"
repeat with qc=120 to 121
repeat with x=1 to the number of lines in field qc
set codice to item 1 of line x of field qc
delete char 1 of codice
if char 1 of codice = "M" then
if char 2 of codice = "I" then
-- put codice
if offset (codice, lista) >0 then
put codice,"OK"
else
put "ERRORE !!!",codice
beep
end if
else
if char 2 of codice = "S" then
if offset (codice, lista_sotto) >0 then
put codice,"OK"
else
put "ERRORE !!!",codice
beep
end if
end if
end if
end if
end repeat
end repeat
put "FINE"
end