Re: [fpc-pascal]'record' / 'array' variable types

2004-03-08 Thread kractor
Dr.Slump wrote: working on some user-defined variable types for a media database project i'm working on (slowly, oh so slowly). i've defined types for artist and album and track (individual). naturally, there's going to be multiple tracks per album, so i'm assuming that an array would be best to s

Re: [fpc-pascal]Splitting Strings at character

2004-03-08 Thread Michael Van Canneyt
On Mon, 8 Mar 2004, Taj Morton wrote: > Hi All, > I'm looking for a routine to create a string list from a string, with > items being seperated with a comma (,). > > For example: free,pascal,OO,linux,win32 > Would create a stringlist with: > > free > pascal > OO > linux > win32 MyStringList.Com

[fpc-pascal]Splitting Strings at character

2004-03-08 Thread Taj Morton
Hi All, I'm looking for a routine to create a string list from a string, with items being seperated with a comma (,). For example: free,pascal,OO,linux,win32 Would create a stringlist with: free pascal OO linux win32 Any ideas? Thanks, Taj ___ fpc-pa

RE: [fpc-pascal]'record' / 'array' variable types

2004-03-08 Thread Dr.Slump
> working on some user-defined variable types for a media database project > i'm working on (slowly, oh so slowly). i've defined types for artist and > album and track (individual). naturally, there's going to be multiple > tracks per album, so i'm assuming that an array would be best to store > th