Re: Add Raw Setting is VBA
OK, the brackets should not be there. See corrected example above.
Thanks alot Prikryl. It worked after adding a couple of other rawsettings for the connection.
OK, the brackets should not be there. See corrected example above.
Dim mySessionOptions As New SessionOptions
With mySessionOptions
.Protocol = Protocol_Sftp
.HostName = "example.com"
.UserName = "user"
...
.AddRawSettings "ProxyHost", "proxy"
.AddRawSettings "ProxyPort", "90"
...
End With