ethicalhacker
Well-known member
I created a new user setting of string type called Homepage
I created the following procedure
and called this procedure on click of a button like ChangeNickname(textbox1.text)
there is no error but there is no chnge in the user setting Homepage either
What have I left out?
I created the following procedure
VB.NET:
Sub ChangeNickname(ByVal newNickname As String)
My.Settings.Nickname = newNickname
End Sub
there is no error but there is no chnge in the user setting Homepage either
What have I left out?