Hi,
I have a form that continuously checks the registry for a key value.
Question is... can I easily change the key from another computer on the network?Code:Private Sub Timer1_Timer()
Select Case GetSetting("Tester", "Lock", "Status")
Case Is = "Yes"
Text1.Text = "Locked"
Case Is = "No"
Text1.Text = "UnLocked"
End Select
End Sub
