Hi Christian,
Your declaration of the colItemCode is local.
Once the process moved out of this OnInitializeComponent method and the GC runs, your reference to this colItemCode is gone, as such the reference of the event handler.
Make sure your colItemCode is still alive when the event is triggered.
The easiest way to do this is to declare your colItemCode in a global scope.
Regards
Edy