multiple objects

  1. asegal0000

    Question How can I determine which object caused handler execution?

    I want to have many objects share a common handler. However, I need to determine which object caused the handler to execute How can I do that? private sub CreateObjects for x = 0 to 99 TB = New TextBox TB.tabindex=x Me.Controls.Add(TB) AddHandler TB.TextChanged, AddressOf CellChanged...
Back
Top