How to retain the data in ListView without using Database in VB6 -
is possible retain data listed in listview without using database? using vb6 , want retain data listed in listview if users re-open program. if possible, how can that?
you don't have use database store data outside of application.
the best way store in simple text file. use built-in vb file access statements - write # save file, , input # load data in.
you use msxml library persist xml, although overkill.
if small amounts of data, store in registry using savesetting/getsetting functions.
Comments
Post a Comment