I would like to load my form size,background image,button position ect.. from a text file at launch.
What I would like to do is say something like this below.
StreamReader streamReader = new StreamReader(appPath + @"\Config\Launcher.txt");
string size = streamReader.ReadLine();
this.Size = new Size(size);
streamReader.Close();
Now I understand I must parse the string to an int in some way then pass that to the size bit.
How would I go about doing this thanks.
Del