I have two user input boxes and a button that are used to add items to a listbox. Is there a way to have those user added items saved to the listbox on exit so that they are still there the next time the application is used?
Professional Software Development Tools
I have two user input boxes and a button that are used to add items to a listbox. Is there a way to have those user added items saved to the listbox on exit so that they are still there the next time the application is used?
Sure, write them out to an INI file, the Registry, a text file or XML file (requires plugin). There are all sorts of actions in AMS50 to handle data persistence.
Do you want the items in the listbox saved upon exit or do you want it to check and see if there is something in the input boxes upon exit and if there is then add it to the list box?
TJ-Tigger
"A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
"Draco dormiens nunquam titillandus."
Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine
I'm wanting what has been added to the listbox saved. I missed the available INIFile fuctions. I'll give that a shot. It should suit my needs. Thanks Brett and TJ.