Our Products:   CompleteFTP  edtFTPnet/Free  edtFTPnet/PRO  edtFTPj/Free  edtFTPj/PRO
0 votes
7.5k views
in General by (200 points)
I would like to upload a file. The file uploads fine but I cant seem to jump to the BytesTransfered() function. My code:-

public void ftpConn_BytesTransferred(Object sender, EnterpriseDT.Net.Ftp.BytesTransferredEventArgs e)
{


long lngBytesTransferred = e.ByteCount;
long lngTotalBytes = fileSz;

lblStatus.Text = "Transferring: " +
lngBytesTransferred.ToString() + " of "
+ lngTotalBytes.ToString();
this.Refresh();
Application.DoEvents();

}


Thank you for any help you can provide

Please log in or register to answer this question.

Categories

...