Jump to content

religon

Newbies
  • Posts

    5
  • Joined

  • Last visited

religon's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. Showed this to a couple of FileMaker system engineers who were at corporate Headquarters last week. There was quite a bit of "Hmmmm..." and "It's not supposed to do that." I'll take that as confirmation.
  2. Lotus Notes is the default email program. As stated, it does launch Lotus Notes and compose a new email. The problem is a little deeper. Thanks, religon
  3. Odd little problem. Corporation upgrades from Lotus Notes 6.0 to 6.5.5 for Windows XP clients. Breaks a little ScriptMaker script used to compose canned email. Something like... "send mail" To: "superadmin@corphome.com" Subject: FMS7Table::Some_Subject Message: "Some static text." When the script is executed, Lotus Notes properly generates a new email. LN 6.5.5 properly fills out the Subject: with the correct data. The problem is the other two fields. Nothing is entered in Message:. And the To: field is very odd... superadmin@corphome.comSome static text. superadmin@corphome.com Behaves properly under Lotus Notes 6.0. Nothing on IBM's tragic website or fix notes about this problem. One other user on this forum has reported this problem with "send mail" and 6.5.5. Can anyone confirm or refute this suspicion? Thanks, religon
  4. Very similar problem here. Upgraded to LN 6.5. Looks like the ScriptMaker "send mail" command may not work as it did in previous versions. The "to:" field and the message body appear concatonated in the "to:" field. Still looking at this problem for a solution.
  5. I have a subroutine finding all matching records and building a list of Record ID (example: 3.5869E+4). Unable to directly go to those records, so I have a clunky work-around of stepping through every record and seeing if that specific record matches. There has to be a better way. Here is the slow code that brute forces its way through the DB... --Finds specifc date records in DB. This works quickly and well. set foundRecords to findSingleDay(simpleDate, "Text DB", "Detailed Layout") tell application "FileMaker Pro" --counts entire database (98% worthless data) set countOfTextDB to count every record of database "Text DB" end tell set i to 0 --Repeat with every record in database. Too slow. repeat with i from 1 to countOfTextDB tell application "FileMaker Pro" set potentialrecordID to (ID of record(i) of layout "Detailed Layout" of database "Text DB" end tell if foundRecords contains potentialRecordID then processRecord(i) end if end repeat Is there a way to directly process the found set of records strictly by the unique record ID? Something like where j is the unique Record ID not the record index... repeat with j in foundRecords process record(j) end repeat Driving me crazy. Any help appreciated. Robert
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.