combo box save and load list items

  • Thread starter Thread starter z. f.
  • Start date Start date
Z

z. f.

Hi,

do you familiar with implementation of combobox that can automatically save
and load it's list items, using configuration?
it should be a control that inherit all the combobox
propertyes,methods,events and implements some of it's own.

TIA, z.
 
* "z. f. said:
do you familiar with implementation of combobox that can automatically save
and load it's list items, using configuration?
it should be a control that inherit all the combobox
propertyes,methods,events and implements some of it's own.

What's the exact problem? Inheriting from the combobox? Storing the
values?
 
i guess i'm asking is out there available inherited version that
automatically stores the values' or a reference to example of inheriting the
combobox.

thnx!
z.
 
* "z. f. said:
i guess i'm asking is out there available inherited version that
automatically stores the values' or a reference to example of inheriting the
combobox.

\\\
Imports System.Windows.Forms

Public Class ExtendedComboBox
Inherits ComboBox

...
End Class
///
 
will this supply also the GUI page, will my control have all the properties
and methods of the combobox?
 
Back
Top