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:
Code:
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).]