mindweaver
I can't find any samples or posts describing how onTransferProgress works in c# or in vb.net, only vb6 and I can't seem to convert it and get it working. Shouldn't there be an onTransferProgressEventArgs or something?
Please give me a simple sample.
If you think my question isn't sufficient, please tell me what more you need to help me in this matter.
I have come this far:
that should be right. but I don't know how to construct my :
it should look something like
Please give me a simple sample.
If you think my question isn't sufficient, please tell me what more you need to help me in this matter.
I have come this far:
ftp2.OnTransferProgress += new IFTPConnectionEvents_OnTransferProgressEventHandler(ftp2_OnTransferProgress);
that should be right. but I don't know how to construct my :
private void ftp2_OnTransferProgress(...
it should look something like
private void ftp2_OnTransferProgress(object sender, OnTransferProgressEventArgs e) { ... }