New topic: Registry.name(i) help again
<http://forums.realsoftware.com/viewtopic.php?t=25497> Page 1 of 1 [ 1 post ] Previous topic | Next topic Author Message Dx-Dyablo Post subject: Registry.name(i) help againPosted: Thu Dec 04, 2008 9:23 pm Joined: Fri Feb 08, 2008 10:47 am Posts: 99 Location: Portland, Oregon, USA like this Code:dim myItem as registryItem dim i as integer myItem = new RegistryItem("HKEY_CURRENT_USER\Software\Ares\ChatFavorites\") for i = 0 to myItem.KeyCount - 1 ListBox1.AddRow RegistryItem.Item(i) next or like this Code:dim RegistryItem as registryItem dim i as integer dim dx as string RegistryItem = new RegistryItem("HKEY_CURRENT_USER\Software\Ares\ChatFavorites\") for i = 0 to RegistryItem.FolderCount-1 ListBox1.AddRow RegistryItem.Item(i).item'error here next and like this i just get the count of the folder but no the names :S Code:dim Registry as registryItem dim i as integer Registry = new RegistryItem("HKEY_CURRENT_USER\Software\Ares\ChatFavorites\") for i = 0 to Registry.FolderCount -1 PopupMenu1.AddRow Registry.name(i) next i wanna get all the folder in red cuz all the folder have info tha i need like this but 1st i need get the name of all the folder enyidea _________________ Its not the same tell: I'll Kill you, than. It's time To kill... http://www.bestfreeforums.com/forums/dxteam.html Top Display posts from previous: All posts1 day7 days2 weeks1 month3 months6 months1 year Sort by AuthorPost timeSubject AscendingDescending Page 1 of 1 [ 1 post ] -- Over 900 classes with 18000 functions in one REALbasic plug-in. The Monkeybread Software Realbasic Plugin v8.1. <http://www.monkeybreadsoftware.de/realbasic/plugins.shtml> [email protected]
