I think of adware and stuff like this.
So I wan't to check if there's a new value
in a specific key.

I know how to copy one value/string from the registry,
but how do I copy more than one value in a key.
Of cause I can write all the names in the key, and print them
one by one, but if there where a whole new value added,
then I can't print that value out :confused:
Posted on 2004-05-21 15:50:23 by The SharK
You need to use RegEnumKeyEx and RegEnumValueEx APIs. RegEnumKeyEx gives you all keys below a specified key and RegEnumValueEx gives you all Values below a specified key.

Regards,
Sami
Posted on 2004-05-22 02:08:30 by SamiP
Thanks a lot SamiP :alright:
Posted on 2004-05-22 02:21:09 by The SharK