Hello All...
I want to overload the passiveMode attribute to false... any ideas? Is this property available through the dot operator and I'm simply missing it?
Thanks
It's in the help under the IWsftpApi interface section
Using the VB6 SDKTest sample from the SDK folder:
Set pApi = CreateObject("WsftpSDK.WsftpApi")Log.AddItem " Passive currently set to '" & pApi.PassiveMode & "'"pApi.PassiveMode = FalseLog.AddItem " Passive now set to '" & pApi.PassiveMode & "'"
Running the project will open the connection and show you a before / after picture
of PassiveMode in the Log box on the form.
Hope this helps