Registry monitor

simian

Member
Joined
Jun 7, 2006
Messages
13
Programming Experience
Beginner
I have found that I can use RegNotifyChangeKeyValue to tell me when a registry change has been made but I am wondering if there is a way to tell me exactly what change was made. ie if a program added the key "Software/Mykey" my program would report that the key "Software/Mykey" had been added to registry.
Thanks.
 
umm, I don't know how to get the name of what was added or changed but you might be able to use an "IF, Then" statement to display a messagebox with a generic message. Like

If RegNotifyChangeKeyValue Then
MessageBox.Show("there has been a registry change")
End If
 
Registry watch

Hi I have found out how to use 'RegNotifyChangeKeyValue' to see that a registry change has been made but I can not work out how to see exactly what registry key was changed. Any ideas ?????
 
Back
Top