⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pretest.bat

📁 East make Tray Icon in delphi
💻 BAT
字号:
@echo off

if EXIST build.exe GOTO FOUND

dcc32.exe -$D- -DJCL -Q build.dpr >NUL
if ERRORLEVEL 1 GOTO FAILED

rem ======= COMPILED =======
echo build.exe compiled. Pretest: ok

goto LEAVE

:FAILED
rem ======= FAILED =======
echo.
echo.
echo Delphi Compiler for Win32 (dcc32.exe) was not found. Please add the 
echo Delphi\Bin directory to the PATH environment variable.
echo.
echo You can do this by executing 
echo   'SET PATH=C:\Program Files\Borland\Delphi7\Bin;%%PATH%%'
echo.
echo (Adjust the directories to your installation path)
echo.


goto LEAVE

:FOUND
rem ======= FOUND =======
echo build.exe found. Pretest: ok

:LEAVE

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -