-- this function gets a tab-separated list of
-- values (ppData) and a tab-separated list of
-- keys (ppKeys). then an array is filled up
-- with the ppData values and returned
function gF_LoadPPRec pData,pKeys
put empty into lPPArray
set the itemDelimiter to tab
repeat with i = 1 to the number of items of pKeys
put item i of pData into lPPArray[(item i of pKeys)]
end repeat
return lPPArray
end gF_LoadPPRec
11/26/02, David Vaughan wrote:
can you reveal some code?
_______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
