I am having trouble saving a name and the score and then displaying the information that was save. I need some code!!! Please help!!! OH I also need help in clearing a Text box.
Printable View
I am having trouble saving a name and the score and then displaying the information that was save. I need some code!!! Please help!!! OH I also need help in clearing a Text box.
1. You can use the SaveSetting command and GetSetting command:
2. To clear a text box:VB Code:
SaveSetting App.Title, "Scores", "Player 1", 5000 Text1.Text = GetSetting(App.Title, "Scores", "Player 1", 0) ' default of 0
VB Code:
Text1.Text = ""
Bollox to using the registry.
Vyvette, how are you storing information regarding the player in your game at the moment ?