Access to combobox Windows Forms 2.0 or AXComboBox

I created a mutli-column combobox in VB.net 2008 using windows 2.0 forms. I am having problems accessing data that has been selected for use in the rest of the form. There seems to be no selected event to use in conjunction with winform 2.0 combobox.

Does anyone have any experience with winforms 2.0? Also, I think the best question is: is there a site with 2.0 form windows breakdown? Because so far nothing seems as detailed as MSDN.

0


source to share


3 answers


We bought infragistics controls and solved this problem.



0


source


SelectIndexChanged event for ComboBox class

http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.aspx

SelectIndexChanged:

http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.selectedindexchanged.aspx



SelectedValueChanged:

http://msdn.microsoft.com/en-us/library/system.windows.forms.listcontrol.selectedvaluechanged.aspx

All Winform controls are well documented on the msdn website.

0


source


The controls I'm talking about are in: axmicrosoft.vbe.interop.forms.axcombobox. Which don't have a lot of documentation. However, it provides the ability to create multi-column combo boxes.

I'm not happy with the prospect of creating multi-column comboboxes, and I explained and demonstrated to the client that this is not the best implementation, but the client still wants to use multi-column fields.

I am also open to the prospect of third party tools (free, not free).

If anyone has any experience with this issue please post any information they have.

0


source







All Articles