Re: Problem getting Listing for UNIX Type: L8 Serv - WeOnlyDo Discussion board

Re: Problem getting Listing for UNIX Type: L8 Serv (General questions)

by wodDrazen, Monday, September 25, 2006, 18:26 (6417 days ago) @ dtw01

Dave,


You can try something like this in PreTranslateCommand Event:
----------------------------------------------
Private Sub dlx1_PreTranslateCommand(Command As String)

If Left$(Command, 3) = CWD Then
Command = & vbCrLf
End If

End Sub
----------------------------------------------

or this:

----------------------------------------------
Private Sub dlx1_PreTranslateCommand(Command As String)

If Left$(Command, 3) = PWD Then
Command = & vbCrLf
End If

End Sub
----------------------------------------------

PreTranslateCommand Event fires before the command is sent to FTP server.

More help for PreTranslateCommand Event you can find here:
http://www.weonlydo.com/FtpDLX/Help/wodFtpDLXLib~wodFtpDLX~PreTranslateCommand_EV.html

You can try it. I'm not sure that you will get successful result. Problem is that we can't connect to your server so my proposal could not give any result.
You can try something else to send for CWD or PWD or other Command in PretranslateCommand Event.

Let us know how it goes.


Drazen


Complete thread: