0
0
Ok, and how do i do that:P?
i just need simple instructions:
- make the XML
- save a variable to the XML
- load variable form XML
Thanks
0
I am sorry, I did not realize that it is an XNA Studio Game Solution. I have little knowledge about this so my guess is you have to use external storage of xml file or any other format.
0
in the properties i dont see settings, only this:
or am i looking in the wrong window?

0
Open you project in your IDE follow these steps:
1. Right Click on the project, click properties.
2. Click on Settings tab on the left, this will open grid on the right hand side. Here you need to enter name of the setting (topscore), type(string), scope(User) and Value(0).
3. you can later access this settings from C# code like below.
Properties.Settings.Default.topscore;
you can save new score to this setting like below:
Properties.Settings.Default.topscore= mtopScore;
Properties.Settings.Default.Save();
0
you can store it in the project settings file.