(no subject)
(no subject)
- Subject: (no subject)
- From: "Lens Eric" <email@hidden>
- Date: Sat, 31 Jul 2004 22:50:21 +0100
Hello,
I used this code to copy some records from the database "CDR file" to the
database "LOG_file".
The first database contains also relational data from other databases.
I try to copy some records from the first database to the second Log_file
database.
When i do this with the following code, it copies all the fields of a record
of the first database to the first field of the second database, each data in
a next record but always in the first field.
Can anyone say me what the problem is?
tell application "FileMaker Pro 6"
go to database "CDR file"
go to layout "list quick view to check"
show (every record of database "CDR file" whose first cell = "16604069")
set recordsfound to record 1 of document "CDR file"
repeat with i in recordsfound
create record at layout "list quick view to check" of database
"Log_file" with data i
end repeat
go to database "log_file"
activate
end tell
Who has good information about this kind of programming?
thanks
Eric
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.