git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jvcl@17 7f62d464-2af8-f54e-996c-e91b33f51cbe
8 lines
400 B
Batchfile
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
|