This is a tut to show you how to add a Reg Key to your program(s) without using an additional form. instead it uses an inputbox to obtain the reg key, Once the correct key has been given then it will not ask again! the code: If My.Settings.regkey = “false” Then Exit Sub End If Dim useinput As String useinput = InputBox(“Please type a Reg Key”, “RegKey”, “Type the regkey here”) If useinput = “YourREGKEY” Then MsgBox(“Correct code!” & vbCrLf & “Please enjoy this program”) My.Settings.regkey = …
This is good, thanks! 5*