I am a bit of a newbie, so be patient. I downloaded the rebex trial software for FTP for a windows CE 5.0 build using compact framework 2.0. Everything works as advertised and rather easy to use. We will end up buying the software. Anyway my issue is catching a bad ftp address and prompting the user for a correction. The code I used is:
Dim loginerror As String
Dim error_exit As Boolean
error_exit = False
Try
client.Connect(web_address)
Catch ex As Rebex.Net.ProxySocketException
error_exit = True
loginerror = ex.Message.ToString
End Try
When I execute the above snippet with a proper address, all is fine, but when I on purposely insert a bad address, The catch does not work and the system crashes. What am I doing wrong???