PDA

Click to See Complete Forum and Search --> : registry


Clunietp
Jan 2nd, 2000, 12:17 AM
Here is some similar code I have posted previously
http://www.vb-world.net/ubb/Forum1/HTML/012381.html

ReNeGaDe75
Jan 2nd, 2000, 11:33 AM
i'm working on a program that has links stored in a menu called bookmarks like a web browser's favorites
the bookmarks arent regular bookmarks they're for a special reason
i want a section in the registry that lists all of them
i know a little about the GetAllSettings function but im not sure how to load each setting into an array
thisis what i have so far:
Dim bookmarks(14, 14)
bookmarks(0, 0) = GetSetting("Whois Search", "bookmarks", "Bookmark1", "")
bookmarks(1, 1) = GetSetting("Whois Search", "bookmarks", "Bookmark2", "")
That's what I have so far and I'd like to be able to have up to 15 stored in the registry
but how can I make it load each key and add a menu item that's the key's name and when a user clicks on it, it goes to the url(the key's value)

[This message has been edited by ReNeGaDe75 (edited 01-02-2000).]

ReNeGaDe75
Jan 3rd, 2000, 04:36 AM
ok thanx man

------------------