views:

130

answers:

2

I would like to generate a list of events and methods assigned to them in a given BCB project. Is there a way to do this?

+1  A: 

I don't think you can do this in a 100% reliable way. But maybe it's enough to just scan all the *.dfm's in your project folder for lines starting with " On".

Ulrich Gerhardt
+1  A: 

There are DFM parser code available on the net.

http://www.felix-colibri.com/papers/colibri_utilities/dfm_parser/dfm_parser.html

FWIW, event is simply a property with method type.

Sake