RE: Working with arrays

2012-02-14 Thread Dave Crozier
-Original Message- From: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] On Behalf Of Joe Yoder Sent: 13 February 2012 14:22 To: profox@leafe.com Subject: Working with arrays I'm working on a utility to convert between CSV and DBF files. I build an array based on the information

Working with arrays

2012-02-13 Thread Joe Yoder
I'm working on a utility to convert between CSV and DBF files. I build an array based on the information included in the CSV file, manually assign fields names, and use it to create a DBF file. I plan to save the array in a memo field in a Formats table used to store formats. When a CSV

RE: Working with arrays

2012-02-13 Thread Tracy Pearson
Joe Yoder wrote on 2012-02-13: I'm working on a utility to convert between CSV and DBF files. I build an array based on the information included in the CSV file, manually assign fields names, and use it to create a DBF file. I plan to save the array in a memo field in a Formats table used to

Re: Working with arrays

2012-02-13 Thread Gianni Turri
Hi Joe, Hi Tracy, to save an array to a memo field: save to memo mymemofield all like myarray to restore: restore from memo mymemofield additive Gianni ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

RE: Working with arrays

2012-02-13 Thread Tracy Pearson
Gianni Turri wrote on 2012-02-13: Hi Joe, Hi Tracy, to save an array to a memo field: save to memo mymemofield all like myarray to restore: restore from memo mymemofield additive Gianni Gianni, Thank you Gianni. Tracy Pearson PowerChurch Software

Re: Working with arrays

2012-02-13 Thread Joe Yoder
and report unless someone answers first. Thanks again - Joe On Monday, February 13, 2012 11:53 AM, Gianni Turri wrote: Date: Mon, 13 Feb 2012 17:53:58 +0100 From: Gianni Turri To: profoxt...@leafe.com cc: Subject: Re: Working with arrays Hi Joe, Hi Tracy, to save an array to a memo field: save

Re: Working with arrays

2012-02-13 Thread Dan Covill
On 02/13/12 10:40, Joe Yoder wrote: Now I'm wondering if one could test for equality on two arrays by comparing memo fields with the arrays in them. Not sure about comparing just the memo fields, but you can easily compare the entire record(s), including the memo fields: local oSaveRec,

Re: Working with arrays

2012-02-13 Thread Stephen Russell
On Mon, Feb 13, 2012 at 12:40 PM, Joe Yoder j...@wheypower.com wrote: Thanks guys, I knew about save to memo mymemofield all like myarray but I hadn't found the acopy() function.  When one searches for array functions in the help system acopy() does not show up.  It doesn't show up in the see

RE: Working with arrays

2012-02-13 Thread Tracy Pearson
Joe Yoder wrote on 2012-02-13: Thanks guys, I knew about save to memo mymemofield all like myarray but I hadn't found the acopy() function. When one searches for array functions in the help system acopy() does not show up. It doesn't show up in the see also sections at the bottoms