Hi,
I have some trouble to find the correct translation of the following statement from C# to VB:
b0.OnDataChanged += new PublicDelegates.OnDataDG(b0_OnDataChanged);
Who can help me?
I found it myself:
AddHandler b0.OnDataChanged, AddressOf OnNewData
The name OnNewData is not critical as long as you defined a function by that name with the correct signature. That was where i did go wrong. My function signature was not correct.