Hi Larry,

The FindRecord function only returns the first record which matches the
specified value.  However, you can certainly iterate over all the
records yourself to find multiple matches.  Here's an example using the
Frodo Travel tutorial template:

  var XDF = new ExternalDataFileEx("frodo-instancedata.txt", ",");

  var s = "";
  for (var i = 1; i <= XDF.recordCount; i++)
  {
    s += XDF.GetFieldValue(i, "Name") + "\n";
  }

  return s;

You should be able to use similar logic in your job.

But I'm not sure what you want to do with the multiple records that you
return.  The example above just concatenates them all together in the
returned string.  Are you planning to output them all in a list or a
table of some sort?  You'll need some kind of tagging to handle that.

Dan


--
Users of FusionPro Desktop have unlimited free email support. Contact Printable 
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm

--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--


--
Note:  All e-mail sent to or from this address will be received or otherwise 
recorded by the e-mail recipients of this forum. It is subject to archival, 
monitoring or review by, and/or disclosure to someone other than the recipient. 
Our privacy policy is posted on www.printplanet.com
--

Reply via email to