프로그래밍 노트

W1005 Unit 'FileCtrl' is specific to a platform 메세지 없애기 본문

델파이

W1005 Unit 'FileCtrl' is specific to a platform 메세지 없애기

떡잎 2009. 10. 16. 18:33


[Pascal Warning] uAAA.pas(12): W1005 Unit 'FileCtrl' is specific to a platform


요즘 FileCtrl를 쓰는 사람이 별로 없겠지만 혹시라도 쓰는 사람이 있으면
이런 메세지가 뜬다.

이 메세지를 안뜨게 하려면 아래와 같은 코드를 넣어주면 된다.

uses
  {$WARN UNIT_PLATFORM OFF}
    FileCtrl;
  {$WARN UNIT_PLATFORM ON}


Comments