1752754 Members
4963 Online
108789 Solutions
New Discussion юеВ

DCL symbols

 
SOLVED
Go to solution
robert70
Valued Contributor

DCL symbols

I am trying to setup a symbol called IFTP
which I want to function as follows

FTP test.site.com /user="test"/password="test"

However when I do a

IFTP :==
FTP test.site.com /user="test"/password="test"

I get the symbol IFTP but without the "" thus causing the connection a failure

Any help please?
4 REPLIES 4
Jim_McKinney
Honored Contributor
Solution

Re: DCL symbols

IFTP == "FTP test.site.com /user=""test""/password=""test"""
The Brit
Honored Contributor

Re: DCL symbols

Hi Rob,
These are always fun. Try,

IFTP == "FTP test.site.com /User="""test""" /Pass="""test""""

i.e. each internal " must be included in ", so
" -> """

Dave
robert70
Valued Contributor

Re: DCL symbols

perfect! thanks guys
Cheers
robert70
Valued Contributor

Re: DCL symbols

Closed