PDA

View Full Version : User Inputs Saved After Close?


brdga
06-24-2004, 03:32 AM
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?

Brett
06-24-2004, 08:09 AM
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.

TJ_Tigger
06-24-2004, 09:07 AM
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?

brdga
06-24-2004, 11:24 AM
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.