Frequently Asked Questions

How to get Events in Visual FoxPro 6.0 while Blocking is set to true?

You have to change value of AutoYield Property to value false.
Here is example:

_VFP.AutoYield = .F.
thisform.sftp.HostName= 'your_hostname'
thisform.sftp.Login='your_login'
thisform.sftp.Password='your_password'
thisform.sftp.Blocking= .T.
thisform.sftp.Connect()
Although events are fired, you can just ignore them and check if error occurred during method execution.


 Last updated Fri, Nov 8 2013 12:00am

Please Wait!

Please wait... it will take a second!