-
Hello, Two different combo boxes for a C# WinForms application that need to have a list of the same data. They need to be able to have different values at any given time, so they can't use the same BindingSource. I have a NameValueList business object that has an ID(Key) and Name(Value). I want to...
-
I have a nvl of state_id, state_abbrev. I have to bind it to multiple combo boxes (applicant license state, applicant address state, vehicle garaging state) I created the NVL with private constructor and using cache. When I bound the nvl to all 3 combo boxes, changing one combo box changed all (I guess...