You know that in Visual Studio you can use the "+ =" syntax and a couple of tabs so that it automatically generates code for the event handler?
How do I do the same in Delphi? I am trying to create an event handler for the invisible activex library that I imported using the Import Component function.
I understand that with imported activex controls, you can simply click on an object, view the events tab for what the component provides, and double-click on an event to generate it for you.
These activex components are invisible, so you can select them in the form. Can Delphi automatically generate code? If not, can someone give me some sample code?
source
share