Re: Trouble with simple Find in FMP data base
Re: Trouble with simple Find in FMP data base
- Subject: Re: Trouble with simple Find in FMP data base
- From: Bill White <email@hidden>
- Date: Fri, 23 Jan 2004 13:12:44 -0500
>
set myValue to "00002"
>
set myCell to "InventoryCode"
>
set myTable to "LineItems.fp5"
>
>
tell application "FileMaker Pro"
>
find myValue in cell myCell of database myTable
>
end tell
Chap,
Try this:
set myValue to "00002"
set myCell to "InventoryCode"
set myTable to "LineItems.fp5"
tell application "FileMaker Pro"
show (first record of database myTable whose cell myCell is myValue)
end tell
Note: you can use "last record" or "every record" instead of "first record"
depending on what you're trying to accomplish.
HTH,
Bill
_______________________________________________
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.