Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a sub where you can put in a code when a listbox item is added?

( example )

Private Sub listboxitemadded(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles listbox1.listboxitemadded

      my code...

End Sub
share|improve this question
You may need to catch an event from the items container that the listBox uses to store items. I don't see an event like you're asking for in the Control's documentation. – IanGilham Oct 26 '11 at 15:10

2 Answers

up vote 0 down vote accepted

I would add all you LixtBox items into a generic BindingList. Then bind that list to your ListBox.

The BindingList has an event call 'AddingNew' that you can hook into to know when items have been added to the list.

share|improve this answer
Thank you i think i can do that :P – Ruben Oct 26 '11 at 15:08

I don't see one in the MSDN. You can create a custom listbox and add the event yourself, but I don't see any events in the listbox control as-is.

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

share|improve this answer
Thanks, i'm going to try norlando's idea first, if i'm not able to i'm going to try yours. – Ruben Oct 26 '11 at 15:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.