Anyone help out with this ?

The application I'm working on allows to user to set up numerous connections to different databases. The database information is stored in the registry, i.e.

HKEY_CURRENT_USER\Software\My App\Databases\My Database
HKEY_CURRENT_USER\Software\My App\Databases\Test Database
HKEY_CURRENT_USER\Software\My App\Databases\Another Database

What I would like to do is have a combobox that contains a list of the available databases, so I need to be able to get the names of all the immediate sub keys of HKEY_CURRENT_USER\Software\My App\Databases. Is it possible to do this ???

Thanks.