Q&A

  • [Error] Vclutils.pas(351): Undeclared identifier: 'SResNotFound'
델파이 3으로 만들어진 소스를 6에서 돌릴려고 하는데...

[Error] Vclutils.pas(351): Undeclared identifier: 'SResNotFound'

이런 에러가 나고 있습니다....

그부분은


procedure ResourceNotFound(ResID: PChar);
var
  S: string;
begin
  if LongRec(ResID).Hi = 0 then S := IntToStr(LongRec(ResID).Lo)
  else S := StrPas(ResID);
  raise EResNotFound.CreateFmt(ResStr(SResNotFound), [S]);    <== 이부분입니다.
end;


당췌 왜 이런건지 모르겠군요..

고수님들의 답변기다리겠습니다.

4  COMMENTS
  • Profile
    오선배 2003.06.03 08:35
    uses 절에 RTLConsts 추가 하세요..


  • Profile
    곽재근 2003.06.03 08:56
    [Fatal Error] HRW.dpr(24): Unit StdActns was compiled with a different version of StrUtils.TStringSearchOptions

    이오류가 버전이 맞지 않는 것인가요?

    영어가 딸려서리....

    ^^;



  • Profile
    오선배 2003.06.03 09:13
    StrUtils.pas 에서 TStringSearchOptions Type 를
    변경했기 때문에 그렇습니다.
    TStringSearchOptions Type 를 원상복구 하시던가
    아니면 ProJect . Option . Directo...에서 search path 를 클리어 하십시요...


  • Profile
    곽재근 2003.06.03 10:16