Alright, So with this game I am Making with VB I am Confused on how to make the login system to make the registered user to login to his character automatically other then having to make a new character? Here is my login System code not much
Code:Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If TextBox1.Text = My.Settings.Username And TextBox2.Text = My.Settings.Password Then CharCreateForm.Show() Me.Hide() End If End Sub


Reply With Quote
