Hello,
is it in some way possible to launch a sub if data in a listbox is updated?

I thought something as simple as:

Code:
Private Sub ListBox1_Change()
    MsgBox ("ListBox data changed!")
End Sub
But that did not work.

My listbox is filled with data, and I need for every new line that is added to automatically do some data processing (not to be handled by buttons).