Hello. Here is my problem. I have a vb program that requires information to be saved and reloaded at next application startup. How can I go about doing this without i\o to text files?
Printable View
Hello. Here is my problem. I have a vb program that requires information to be saved and reloaded at next application startup. How can I go about doing this without i\o to text files?
If it is a lot of data, use a database, if only a few settings or whatnot, use the system registry. This forum contains a lot of information on both of these methods, just click search and you're bound to find a lot of good stuff. Good luck!
Jeff
If it's not much info. use the GetSettings and SaveSettings functions to save/read them from the registery.