Convert a string variable to constant

QADUDE

Member
Joined
Dec 30, 2009
Messages
12
Programming Experience
3-5
I am developing an application which initially allows the user to browse and select a save location. The selected path is assigned to a public variable which is used with concatenation to crate folder for saving user input data. How can I change the path string to a constant so the user can run the program again without having to run setup routine unless they want to change the save location?
 
If you have 1 or a few how about My.Settings? If you have a lot of them to save use an XML(my first pick) or text file. Though this is not like a Const.
 
Back
Top