imterpsfan3
Programmer
I'm creating an unbound form that has 4 combo boxes that serve as look up tables for related data. I have a method in a class module in which I pass the combo box name and the stored procedure that will serve to load that combo box. I then use DictionaryEntry to load a key, value pair for each row into the combo box. This works fine.
The problem arises in synchronizing the combo boxes to a selectedindex value of the main combo box I use to search for existing records.
When I select an entry in the main combo box I want the other combo boxes to move to the related record in its own combo box and display to the user.
I really like the concept of unbound forms so I hope I can find a remedy for this. Most of the documentation/books I've seen only deal with combo boxes in a bound environment. Is there a better way than to load these combos with dictionaryentrys?
I can post existing code if needed. Thanks in advance.
The problem arises in synchronizing the combo boxes to a selectedindex value of the main combo box I use to search for existing records.
When I select an entry in the main combo box I want the other combo boxes to move to the related record in its own combo box and display to the user.
I really like the concept of unbound forms so I hope I can find a remedy for this. Most of the documentation/books I've seen only deal with combo boxes in a bound environment. Is there a better way than to load these combos with dictionaryentrys?
I can post existing code if needed. Thanks in advance.