Hello evrybody,
I switched from XP to Windows7, this weekend.
On XP I had this Sub to write a Registry Key:
Public Sub KeyCreate(sk, skval)
reg.RootKey(reg.rtCurrentUser)
ErrorLabel(NotCreatedYet)
reg.SetStringValue(key,sk,skval)
'Msgbox("The value is: " & reg.GetValue(key,"TempFolder"))
Return
NotCreatedYet: 'creates the subkey if it didn't exist
reg.CreateSubKey("",key)
reg.SetStringValue(key,sk,skval)
'Msgbox("The key was created.")
End Sub
On Windows7 the Program stoped. Does anybody know what is to do?
Best regards
berndgoedecke