I'm not sure what you need, but when you define a TextBox (via the constructor), you can set its Text property to any value. By default it is empty , but it can be 1.5 if you want it. If the user opens the program again, it will be 1.5, not the last. The same would be true if you close the form and reopen it. There is no need to store the value anywhere else, as it is a global value that you always want to use.
Optionally, you can add something like this to MainForm_Load() : myTextBox.Text = '1.5';
Both solutions will only work if it is a constant value that you do not want to change ever (otherwise you will have to redistribute the application.
source share