Hello ! I am making a login system in visual studio 2010 . I used this code and it works fine !
Code:
   My.Settings.Username = TextBox1.Text
            My.Settings.Password = TextBox2.Text

            My.Settings.Save()
            MsgBox("Account Created !", MsgBoxStyle.Information, "Create")
The only problem is that when it only remembers my username and password untill I close my project's .exe file . After I close it and reopen it all the saved data gets deleted . Could you help me by telling that how can I build a login system in which the data should not get lost even after I close the .exe file ? Many thanks !