Avatar of IssacJones
IssacJones
 asked on

Inheriting from a vb.net combobox

Hi

I want to create a class from a ComboBox and modify the Add property so that when I do something like:

Me.cbMyCombo.Items.Add(objComboItem)

I can modify the data stored in the objComboItem variable within the new class.

Can anybody tell me how to do this?

John
Visual Basic.NET

Avatar of undefined
Last Comment
nepaluz

8/22/2022 - Mon
nepaluz

see below
Public Class MyCombo
    Inherits ComboBox
    Protected Overrides Sub SetItemCore(index As Integer, value As Object)
        MyBase.SetItemCore(index, value)

    End Sub
End Class

Open in new window

IssacJones

ASKER
I've tried your suggestion but it doesn't seem to be called i.e. I placed a breakpoint there and it wasn't called.
nepaluz

did you use the new combobox? e.g
Dim xCombo As New MyCombo
Form1.Controls.Add(xCombo)

Open in new window

or add the class and compile the project, then the MyCombo will appear at the top of the Toolbox.
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
IssacJones

ASKER
Hi

Yes, I have added the basic MyComboBox e.g.

Public Class MyComboBox
    Inherits System.Windows.Forms.ComboBox

    Sub New()

        ' This call is required by the designer.
        InitializeComponent()

        ' Add any initialization after the InitializeComponent() call.

    End Sub

   Protected Overrides Sub SetItemCore(ByVal index As Integer, ByVal value As Object)
        MyBase.SetItemCore(index, value)
    End Sub

End Class

This has been added to my solution and I have created a combo of this type.

What I want to do is when doing this (where cbMyCombo is of type MyComboBox):

Me.cbMyCombo.Items.Add(objComboItem)

is to override the Add so I can modify the objComboItem within the new class.

John
Nasir Razzaq

What do you want to achieve by overriding?
IssacJones

ASKER
Hi

I have made a little more progress with the following:

Public Class ExtendedComboBox
    Inherits System.Windows.Forms.ComboBox

    Sub New()

        ' This call is required by the designer.
        InitializeComponent()

        ' Add any initialization after the InitializeComponent() call.

    End Sub

    Public Overloads ReadOnly Property Items As ComboBox.ObjectCollection
        Get
            Return MyBase.Items
        End Get
    End Property

End Class

This allows me to deal with getting the Items property. What I now need to do is deal with the Add which is called when populating the combobox e.g.

Me.cbMyCombo.Items.Add(objComboItem)

What I'm trying to do is when objComboItem is passed into the combo it may contain text. I want to remove all whitespace from the text passed in within my inherited combobox. That is, if I pass in "    a test   ", then it would be stored and displayed as "a test".

I have been able to do this externally by stripping the white space before passing it into the combo box BUT it seems more logical to me that it is done within the combo i.e. in the process of passing it into the combo box so it is done automatically. Besides, I'm intrigued on how it can be done anyway.

I looks as if the Add memeber I'm trying to override does not exist in the combobox class but rather is in a parent of the combobox i.e.

ComboBox.ObjectCollection.Add Method

If I can override this then I can strip the whitespace during the "Add" process.

Can anybody tell me how to achieve this?

John
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
ASKER CERTIFIED SOLUTION
nepaluz

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
IssacJones

ASKER
poor cat :)

Yes, good idea!

I'm still curious how to override the Add which is built in though.
nepaluz

I actually believe thats the only way to "override" it. Seems simple when you are looking for a complex solution, but that is its beauty!