When setting up events in Steelkix you have to ensure you use the right Event Handler class ... here's a little overview ...

1) First, go to somewhere like MSDN and look-up the docs for the event handler your setting-up, in this case:

TextChanged Event

2) Make note of the syntax, in this case:

 Quote:

Visual Basic (Declaration)

Public Event TextChanged As TextChangedEventHandler


3) Assign your event handler using this class (your basically creating an object of type TextChangedEventHandler) ...

 Code:

$ComboBoxScheduleTask.TextChanged += $System.TextChangedEventHandler(AddressOf 
cmb_ST_TextChanged)



Didn't have a chance to test this so pls advise ...

-Shawn