Quote Originally Posted by VictorN View Post
Sorry, but my MSDN doesn't mention anything looking like TObject. And I don't need anything but TObject description in order to help you.
Must be Borland's library. In .NET there is a base class called Object, from which everything derives. WinForms' implementation of event handler callbacks take two parameters, Object Sender and an event argument class. This looks to use the same concept. So a TObject pointer is just a base pointer to some control that is responsible for raising the event.