Re: connection problems with ActiveX demo (General questions)
Patrick,
Here is example how you need to use wodFtpDLX to get content of files and folders from server :
-----------------------------------------
dlx1=CREATEOBJECT('WeOnlyDo.wodFtpDLXCom.1')
dlx1.HostName = 'your_hostname'
dlx1.Protocol = 1
dlx1.Port = 22
dlx1.Login = 'your_login'
dlx1.Password = 'your_password'
dlx1.Blocking = .t.
dlx1.Timeout = 60
dlx1.Connect()
dlx1.ListDir ('/home/something')
For i = 0 To dlx1.DirItems.Count - 1
? (dlx1.DirItems.Item(i).Name)
Next i
-----------------------------------------
Hope this helps
Regards,
Drazen
Complete thread:
- connection problems with ActiveX demo - Patrick Rock, 2006-07-11, 22:47
- Re: connection problems with ActiveX demo - wodDrazen, 2006-07-11, 23:01
- Re: connection problems with ActiveX demo - wodSupport, 2006-07-11, 23:04
- Re: connection problems with ActiveX demo - Patrick Rock, 2006-07-11, 23:14
- Re: connection problems with ActiveX demo - wodDrazen, 2006-07-11, 23:43
- Re: connection problems with ActiveX demo - Patrick Rock, 2006-07-12, 18:00
- Re: connection problems with ActiveX demo - wodDrazen, 2006-07-11, 23:43
- Re: connection problems with ActiveX demo - Patrick Rock, 2006-07-11, 23:14
- Re: connection problems with ActiveX demo - wodSupport, 2006-07-11, 23:04
- Re: connection problems with ActiveX demo - wodDrazen, 2006-07-11, 23:01