Hello, with the following code attempts to connect to an FTP server.
If there is some problem and can not connect. How do I control it?
I need something like this:
bResult boolean variable is true or false. Successful connection or not.
Is it possible to do something similar?
B4X:
FTPpro.Initialize("ftppro",cHost,iPort,cUser,cPassword)
I need something like this:
B4X:
bResult = FTPpro.Initialize("ftppro",cHost,iPort,cUser,cPassword)
Is it possible to do something similar?