오류
Borland Delphi for .NET compiler version 17.0
Copyright (c) 1983,2004 Borland Software Corporation
Confidential pre-release version built Jul 6 2005 09:40:16
.NET Framework v1.1.4322 loaded
Project1.dpr(8) Warning: W1026 File not found: 'WinForm.TWinForm.resources'
WinForm.pas(114)
Project1.dpr(85)
Error: E1026 File not found: 'WinForm.TWinForm.resources'
계속하려면 아무 키나 누르십시오 . . .
뭐가 문제인지 모르겠습니다.
명령
@echo off
rem **************************************************************
rem ** Batch file to be used from the Delphi 2005 IDE Tools menu
rem ** to invoke the Compact Framework Preview compiler. It takes
rem ** two parameters as follows:
rem ** %1 - Name of project .dpr file
rem ** %2 - Path to project directory
rem **************************************************************
set _DCCILPATH_="C:\Program Files\Borland\BDS\3.0\CFPreview\Bin\dccil.exe"
set _CFUNITS_="C:\Program Files\Borland\BDS\3.0\CFPreview\Lib"
set _PROJECTNAME_=%1
set _PROJECTDIR_=%2
rem *************************************************************
rem ** Ensure the Delphi 2005 Bin directory is in the path. It
rem ** may have been removed by a User path override.
rem *************************************************************
set _BDSDIR_=C:\Program Files\Borland\BDS\3.0\Bin
path %_BDSDIR_%;%PATH%
rem *************************************************************
rem ** Cater for the fact that paths with spaces can't be passed
rem ** in from the Tools menu
rem *************************************************************
SHIFT
SHIFT
:LOOP
IF "%1" == "" GOTO END
set _PROJECTDIR_=%_PROJECTDIR_% %1
SHIFT
GOTO LOOP
:END
cd %_PROJECTDIR_%
del *.dc?il
%_DCCILPATH_% "%_PROJECTDIR_%%_PROJECTNAME_%" -u%_CFUNITS_% -luSystem.Windows.Forms -luSystem.Data
pause