Search Results

6
votes

How to change behaviour of TDBNavigator component?

You could derive your own class from TDBNavigator and override BtnClick method. Or, for a quick and dirty fix, you could change the insert button's click handler at runtime, e.g.: t …
4
votes

How to “scan” the full list of currently-installed VCL components

Unfortunately, the code implementing the RegisterClass mechanism is hidden in Classes implementation section. If you need this for getting the list of components installed in the IDE, you c …
1
vote

How to “scan” the full list of currently-installed VCL components

Another idea is to scan for type information which is on top of the list of exported functions so you can skip enumerating further. The type infos are exported with names starting with prefix '@$xp …
4
votes

Fuss over Runtime and Design Time packages in Delphi

Designtime stuff may use Delphi's internal units/packages to which you neither have source code nor are legally allowed to distribute in binary form. You probably don't want to make …