Quick question how do I get the url the user typed and send it to a(0)
and then make sure when the user types in and send it to a(1), etc.

Then make it so when the back button is pressed if a url is available in the array it goes to the last one not the current one viewed. Also when the forward button is pressed it goes to the url that was visited last before the new website was loaded

Brian
On Sep 8, 2006, at 10:15 AM, Jeff Borckardt wrote:

//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>

_______________________________________________
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