
December 23rd, 2003, 01:03 AM
|
|
Registered User
|
|
Join Date: Dec 2003
Posts: 18
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
VB.net question
hi,
I basically am creating an application for creating a wordlist and modifying it for later usage.
my problem is the following..
from within form2..
ComboBox1.Items.Add(Form4.tbox1.Text)
ComboBox2.Items.Add(Form4.tbox1.Text)
ComboBox3.Items.Add(Form4.tbox1.Text)
i am accesing a textbox contents in another form in this form. The item gets added to the combo box collection , but when i exit the current form and come back to this form later ...the added items are not permanently updated in the combobox. I find an empty combo box.
Could someone kindly tell me what exactly i need to do..such that the contents i add to the combobox exist permanently(even if i close the app and startup preferably)
Thanks
|