Hello,
I'm an absolute beginner in this language.
Why is 'yes' or 'no' displayed first and then the first message box with the time?
Sorry, if this has been asaked before.
Thanks!
I'm an absolute beginner in this language.
Why is 'yes' or 'no' displayed first and then the first message box with the time?
Sorry, if this has been asaked before.
Thanks!
B4X:
Sub Button1_Click
Dim FTP As FTP
Dim ctm As CustomTrustManager
DateTime.DateFormat = "dd-MM-yyyy"
MsgboxAsync(DateTime.Date(DateTime.now),"")
FTP.Initialize("ftp", "ftp.server.com", 21, "user", "password")
If FTP.IsInitialized=True Then'
MsgboxAsync("yes","")
else if FTP.IsInitialized=False Then
MsgboxAsync("no","")
End If
FTP.Close
End Sub