Componentes.Terceros.jvcl/official/3.36/devtools/bin/UsedJVCL.bat
2009-02-27 12:23:32 +00:00

8 lines
400 B
Batchfile

@echo off
rem This batch file searches your dfm files for any use of JVCL components (classes starting with TJv) and
rem puts the results into a text file. Initial idea provided by Heinz Zastrau.
rem Uses Borland's grep utility (included with Delphi and CBuilder)
echo. Searching, please wait...
grep -di "object [a-z0-9_]*: TJv" *.dfm >UsedJVCL.txt
echo. Done. Results are in UsedJVCL.txt