//This is very basic and clunky but hopefully clarifies things

dim a(3) as string //your array
dim b as string //another string for later
dim i as integer

//this loads values into your array a
a(0)="Apples"
a(1)="Oranges"
a(2)="Kiwi"
a(3)="Pears"

//this pulls the info from your array and compiles it in another string variable b
for i=0 to 3
b=b+a(i)
next

//now b equals "ApplesOrangesKiwiPears"

HTH,
Jeff



On Sep 7, 2006, at 7:16 PM, Brian Heibert wrote:

I have never done arrays or dictionaries before can someone give me a example of either one that would store a list of urls?

Brian
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to