I created a program and there's for example a openfiledialog to open different filepaths. But when I restart the program all the filepaths in the array are gone, so every time I need to reselect these files.
Is there a solution so when I close the program it'll save the chosen files, so when I start up the program afterwards, I still have these files?
I heard a database could do the job there, now I have 0 experience with databases and there are so many different ways to create one...
My thought of this was writing all the values to a .TXT file and rereading it on startup, but this seems like a messy solution.
If you think a database is a perfect solution, these are the requirements of the database: - Local only - Capable of saving +- 50 variables (int's, strings, bools, ...) - easy use (No need to install other databaseprograms when you install the program itself)
All idea's & tutorials are welcome