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.
Printable View
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.
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]
Or you could use a database to add/load selections to the combo box.