I am trying to make a quick and simple FTP client for my app and need to know how to collect the files that have been added to the local list control.
I am working in VB.Net.
I tried adding an event handler
AddHandler ftpConnection.Downloaded, AddressOf AddFiletoFTPLocalList
Public Sub AddFiletoFTPLocalList(ByVal sender As Object, ByVal e As EnterpriseDT.Net.Ftp.FTPFileTransferEventArgs)
Dim LocalFile As String = e.LocalFile
MsgBox(LocalFile)
End Sub
not working, any help?
TIA