Re: [DUG]: Multi-column String List?

2002-11-07 Thread Mark Howard
,MaxInt) end; Neven - Original Message - From: Mark Howard [EMAIL PROTECTED] To: Multiple recipients of list delphi [EMAIL PROTECTED] Sent: Thursday, November 07, 2002 4:34 PM Subject: Re: [DUG]: Multi-column String List? Neven Can Values be an enumerated list? ie can you

Re: [DUG]: Multi-column String List?

2002-11-07 Thread Mark Howard
: Friday, November 08, 2002 10:35 AM Subject: Re: [DUG]: Multi-column String List? Sorry, not trivial enough for me. I can't figure out how to call it - 'Self' is putting me off. Mark On 7 Nov 2002 at 16:46, Neven MacEwan wrote: No but what you are asking is trivial

Re: [DUG]: Multi-column String List?

2002-11-07 Thread Mark Howard
Neven Thanks for those functions. They look to be very flexible and they'll come in handy. I appreciate your time. Mark --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website:

Re: [DUG]: Multi-column String List?

2002-11-07 Thread Neven MacEwan
? N - Original Message - From: Mark Howard [EMAIL PROTECTED] To: Multiple recipients of list delphi [EMAIL PROTECTED] Sent: Friday, November 08, 2002 1:11 PM Subject: Re: [DUG]: Multi-column String List? Neven Thanks for those functions. They look to be very flexible and they'll

RE: [DUG]: Multi-column String List?

2002-11-07 Thread Myles Penlington
Message- From: Neven MacEwan [mailto:neven;mwk.co.nz] Sent: Friday, 8 November 2002 1:20 p.m. To: Multiple recipients of list delphi Subject: Re: [DUG]: Multi-column String List? Mark No prob, Sometime the issue with Delphi (it being a Object and Algorithmic Language) is when to use which, Esp

Re: [DUG]: Multi-column String List?

2002-11-06 Thread Paul Mckenzie
How many columns ? if 3 or more - I would use a TList with objects (could use records) Regards Paul McKenzie Analyst Programmer SMSS ltd. - Original Message - From: Mark Howard [EMAIL PROTECTED] To: Multiple recipients of list delphi [EMAIL PROTECTED] Sent: Thursday, November 07, 2002

Re: [DUG]: Multi-column String List?

2002-11-06 Thread Neven MacEwan
Mark You could use a std string list with the 'name' and 'values' properties Entry_Field=Col1,Col2,Col3 etc Beyond that I'd look at kbmMemTable HTH Neven - Original Message - From: Mark Howard [EMAIL PROTECTED] To: Multiple recipients of list delphi [EMAIL PROTECTED] Sent:

RE: [DUG]: Multi-column String List?

2002-11-06 Thread Stephen Barker
Mark, as you're using DBISAM, I would tend to use a DBISAM memory table with method: .ImportTable('thefile.csv',...) Alternatively, depending on how you want to process the data, use a couple of stringlists: var SLTable, SLRecord : TStringList; ... SLTable.LoadFromFile('thefile.csv'); for i:=0

Re: [DUG]: Multi-column String List?

2002-11-06 Thread Mark Howard
Neven Can Values be an enumerated list? ie can you refer to Values[i]? Couldn't see any reference to that in Help. Mark On 7 Nov 2002 at 15:10, Neven MacEwan wrote: Mark You could use a std string list with the 'name' and 'values' properties Entry_Field=Col1,Col2,Col3 etc

RE: [DUG]: Multi-column String List?

2002-11-06 Thread Mark Howard
Thanks Steve and Paul That looks to be a neat solution - a StringList of StringLists. I'm talking V small tables here. Mark On 7 Nov 2002 at 15:56, Stephen Barker wrote: Mark, as you're using DBISAM, I would tend to use a DBISAM memory table with method: .ImportTable('thefile.csv',...)

Re: [DUG]: Multi-column String List?

2002-11-06 Thread Neven MacEwan
, November 07, 2002 4:34 PM Subject: Re: [DUG]: Multi-column String List? Neven Can Values be an enumerated list? ie can you refer to Values[i]? Couldn't see any reference to that in Help. Mark On 7 Nov 2002 at 15:10, Neven MacEwan wrote: Mark You could use a std string list

Re: [DUG]: Multi-column String List?

2002-11-06 Thread Mark Howard
- From: Mark Howard [EMAIL PROTECTED] To: Multiple recipients of list delphi [EMAIL PROTECTED] Sent: Thursday, November 07, 2002 4:34 PM Subject: Re: [DUG]: Multi-column String List? Neven Can Values be an enumerated list? ie can you refer to Values[i]? Couldn't see any reference