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
|
|
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. |
|||
|
|
|
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 |
|||
|