Date:  11/23/2005 08:03:15 PM Msg ID:  002752
From:  FoxWeb Support Thread:  002751
Subject:  Re: Variables
Your code has an error.  Here's the correct code:
 
RemotePath = "/home/popuser/r/o/rob"
Sftp.RemotePath =  RemotePath

FoxWeb Support Team
support@foxweb.com email

Sent by Rob Thomas on 11/23/2005 12:56:39 PM:
I have a COM object we use for Sftp.
 
 
This works fine
 
      Sftp.RemotePath = "/home/popuser/r/o/rob"
 
 
This causes an "not found" error
 
 
     RemotePath = "/home/popuser/r/o/rob"
 
     Sftp.RemotePath =  &RemotePath
 
 
Any Clues