When I try to test the Ftp.dll, I get the following error message :-
TypeLoadException
Could not load type
'Limilabs.FTP.Client.ftp' from assembly
'Ftp, Version=2.0.19002.942,
Culture=neutral,
PublicKeyToken=6DC438AB78A525B3'
My test program is below :-
Imports Limilabs.FTP.Client
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Call TestConnect()
End Sub
Public Sub TestConnect()
Using FtpCl As New Ftp()
FtpCl.Connect("www.miniposftp.com.au")
FtpCl.Login("ShuteHarbour", "Warehouse")
FtpCl.Close()
End Using
End Sub
End Class
I have added a reference to ftp.dll
I am using VB.Net in VS2008
What am I doing wrong ?
Thanks, Darren.