RE: Getting information form a list

2004-07-20 Thread Buzz Kettles
nal Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Irv Kalb Sent: Monday, July 19, 2004 12:42 PM To: [EMAIL PROTECTED] Subject: Re: Getting information form a list Use "getPropAt" Irv At 12:29 PM -0500 7/19/04, Matt Wells wrote: How do you get the first and second

Re: Getting information form a list

2004-07-19 Thread Mathew Ray
:42 PM To: [EMAIL PROTECTED] Subject: Re: Getting information form a list Use "getPropAt" Irv At 12:29 PM -0500 7/19/04, Matt Wells wrote: >How do you get the first and second value from a property list by the >position? > >listA = [10: "one", 3: "one", 4: &q

RE: Getting information form a list

2004-07-19 Thread roymeo
etaProp, sort -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Irv Kalb Sent: Monday, July 19, 2004 12:42 PM To: [EMAIL PROTECTED] Subject: Re: Getting information form a list Use "getPropAt" Irv At 12:29 PM -0500 7/19/04, Matt Wells wrote: >

RE: Getting information form a list

2004-07-19 Thread Matt Wells
sort -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Irv Kalb Sent: Monday, July 19, 2004 12:42 PM To: [EMAIL PROTECTED] Subject: Re: Getting information form a list Use "getPropAt" Irv At 12:29 PM -0500 7/19/04, Matt Wells wrote: >How do

Re: Getting information form a list

2004-07-19 Thread John Mathis
prop = ListA.getPropAt(x) put prop - Original Message - From: "Matt Wells" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 19, 2004 12:29 PM Subject: Getting information form a list > How do you get the first and second value from a proper

Re: Getting information form a list

2004-07-19 Thread Irv Kalb
Use "getPropAt" Irv At 12:29 PM -0500 7/19/04, Matt Wells wrote: How do you get the first and second value from a property list by the position? listA = [10: "one", 3: "one", 4: "three"] nCount = count(listA) Repeat with x = 1 to nCount secondPos = ListA[x] put secondPos end repeat With this I ge

Getting information form a list

2004-07-19 Thread Matt Wells
How do you get the first and second value from a property list by the position? listA = [10: "one", 3: "one", 4: "three"] nCount = count(listA) Repeat with x = 1 to nCount secondPos = ListA[x] put secondPos end repeat With this I get -- "one" -- "one" -- "three" How do you get this from the p