I have created a C# Windows Form Application which contains labels (among other things, but they're unrelated to the question). what i would like to be able to do is save the .Text property of certain labels. I understand how to set up the form close and form load events, but i have no idea where to even start with the saving??
in case anybody wanted to show me a code snippet, the labels are named: lblJoeMoney, lblBobMoney, lblAlMoney
any tips or links to where i can get more info would be great.
Side Note: i know i didn't explicitly ask a question, so here it is: how can i save certain data in a C# Windows Form Application
It sounds like you want to save the text to be used the next time the program is run. See: https://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.appsettings(v=vs.110).aspx
for an example to save the contents in the configuration files App Settings.