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