Menustrip combobox overrides..

  • Thread starter Thread starter modi321
  • Start date Start date
M

modi321

I am using VB.NET 2.0, and I am having a trouble of time making the
menustrips combobox act how I want. What I am shooting for is instead
of the bland list box popping down when I click on the combobox I
would rather have it popdown with a data grid instead.

Is there any way of overwriting the list that comes with the drop down
box with a data grid?

Thanks!
 
You can use an event and display your own control. The event is DropDown.
Replace it with code that will display your own grid control next to the
dropdown and then add code to handle events when the selection is changed.
 
Back
Top