Example:
Sub App_Start
reg.New1
reg.RootKey(reg.rtCurrentUser)
reg.CreateSubKey("Software","My Application")
End Sub
Example: (same as the above example)
Sub App_Start
reg.New1
reg.RootKey(reg.rtCurrentUser)
reg.CreateSubKey("","Software\My Application")
End Sub