http://www.vb-helper.com/HowTo/cntlns2.zip

	Purpose
Count the lines of code in a Visual Basic project

	Method
Read the project file and find the frm, bas, and cls files it uses.
Open those files. Find the start and finish of the frm files' control
declarations. Count the subroutines, functions, properties, and lines in
the rest of the file.

This is a fairly simplistic method that I threw together to give me an idea
of how many lines of code I was managing. You could make the program much
smarter and have it cound control types, code in event handlers, etc. Let me
know if you make improvements.

	Disclaimer
This example program is provided "as is" with no warranty of any kind. It is
intended for demonstration purposes only. In particular, it does no error
handling. You can use the example in any form, but please mention
www.vb-helper.com.
