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

前端 未结 3 1067
灰色年华
灰色年华 2021-02-10 07:21

I still haven\'t found a truly satisfactory answer to this question, and am now considering rolling my own. I have ModelMaker and GExperts, and neither seems to load the co

3条回答
  •  自闭症患者
    2021-02-10 08:05

    Have you tried Delphi's own class browser?

    The browser gets loaded with shortcut CTRL-SHIFT-B. I believe you can access its options by right clicking in the browser. Here you have the option to show only the classes in your project or all known classes.

    I haven't checked but I expect every descendant from TComponent, including installed components to be visible below the TComponent node. Use CTRL-F to search for a particular class.


    Edit: according to this Delphi Wiki page, CTRL+SHIFT+B is only available in Delphi5. I don't have Delphi 2007 to check for this but if you can not find a class browser in your version, I'd suspect there isn't any.

提交回复
热议问题