Hi Folks,

I need to covert the following from vb to kix and haven't figured it out yet...

Set MySite = CreateObject("CuteFTPPro.TEConnection")
MySite.Option("AutoCloseDelay") = 5

...If there wasn't the "= 5" at the end, I would do it like this...
$MySite_AutoCloseDelay = $MySite.Option("AutoCloseDelay")

...but taking it 1 step further doesn't seem to work...
$MySite_AutoCloseDelay = 5

Your thoughts please.