Hi all,
we would like to read all entries of a given regkey
let's say of the key
HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Devices
we want all the entries, however the last parameter of CLIENT_WIN_API_ENVIRONMENT.Read_Registry is compulsory, but we want all the entries, in fact we don't even know the names of these entries (it's a list of printers)
rtn_Registry := CLIENT_WIN_API_ENVIRONMENT.Read_Registry('HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Devices', null);
as a last parameter we have tried :
null
''
chr(0)
'(Default)'
so how can we get all entries
Kr
Martin