R
roger.breton
Guest
I need to recreate a MS-Access "sub-form" in VisualBasic, something like this:
As you can see, there are three "nested" ComboBoxes in ListBox1.
I experimented with the following code to no avail (nothing is showing in the interface at run time) :
Dim ComboBox1 As New ComboBox
ComboBox1.Items.Add("Sugar")
ComboBox1.Items.Add("Honey")
ListBox1.Items.Add(ComboBox1)
Once I figure out "how" to add ComboBoxes (provided it is possible) then I will need to manage the List, by adding new ComboBoxes or deleting ComboBoxes.
Thank you so much for your help in advance.
Continue reading...
As you can see, there are three "nested" ComboBoxes in ListBox1.
I experimented with the following code to no avail (nothing is showing in the interface at run time) :
Dim ComboBox1 As New ComboBox
ComboBox1.Items.Add("Sugar")
ComboBox1.Items.Add("Honey")
ListBox1.Items.Add(ComboBox1)
Once I figure out "how" to add ComboBoxes (provided it is possible) then I will need to manage the List, by adding new ComboBoxes or deleting ComboBoxes.
Thank you so much for your help in advance.
Continue reading...