Q&A

  • connection timed out 에러 좀 봐 주십시오.
if NOT ftpImg.Connected then        // 재접속
  begin
      ftpImg.Host := Ghostip;         // ftp host 설정
      ftpImg.UserID := Ghostid;       // ftp ID 설정
      ftpImg.Password := Ghostpass;   // ftp Password 설정
      ftpImg.Port := 21;              // ftp Port 설정
      ftpImg.TimeOut := 10000;        // ftp Timeout 설정
      ftpImg.Connect;
      ftpImg.Mode(MODE_BYTE);  //이 부분에서 에러 납니다.
  end;

위 소스에서 'connection timed out' 에러가 납니다.
dbnavigator component를 클릭하다 보면 납니다.
답변 부탁합니다.
0  COMMENTS