PDA

Click to See Complete Forum and Search --> : Vb combobox


valle
Aug 7th, 2000, 05:02 AM
Can anyone Please help me . How can I in Runtime add
new item in combobox and have it permanently added
to the Combobox List??? When I add on the top it is removed when program stops. Thank you in advance.

Aug 7th, 2000, 05:12 AM
You need to save it when the program quits and reload it when the program starts. Use:

SaveSetting appname, section, key, setting
GetSetting(appname, section, key[, default])
GetAllSettings(appname, section)
DeleteSetting appname, section[, key]

ttingen
Aug 7th, 2000, 08:47 AM
Or you could use a database to add/load selections to the combo box.