Does wodFtpDLX have something like list of states that I can look to see if I am connected or not?
Last Updated 12 years ago
You can use StateChange Event and StateTex Property to determine your current state.
Here is example:
Private Sub dlx1_StateChange(ByVal OldState As wodFtpDLXComLib.StatesEnum)
Debug.Print dlx1.StateText
End Sub