Our Products:   CompleteFTP  edtFTPnet/Free  edtFTPnet/PRO  edtFTPj/Free  edtFTPj/PRO
0 votes
3.1k views
in .NET FTP by
Any way to get a sample in vb using the various message events??

ie. commandsent,replyreceived,bytestransferred


also is there a member list of the nunit.framework.dll

i know assert is one


THanks

2 Answers

0 votes
by (161k points)
See http://www.nunit.org/ for nunit.

For event examples, have a look at FTPClientTest in the test package - it is C# but similar to VB.NET

Any way to get a sample in vb using the various message events??

ie. commandsent,replyreceived,bytestransferred


also is there a member list of the nunit.framework.dll

i know assert is one


THanks
0 votes
by
AddHandler ftp.TransferStarted, AddressOf transfer_started
AddHandler ftp.TransferComplete, AddressOf transfer_complete


Private Sub transfer_started(ByVal sender As System.Object, ByVal e As System.EventArgs)
Me.lblprogress.Text = "Transfer Started"

End Sub
Private Sub transfer_complete(ByVal sender As System.Object, ByVal e As System.EventArgs)
Me.lblprogress.Text = "Transfer Complete"

End Sub

Categories

...