At 10:45 PM -0700 8/27/2001, [EMAIL PROTECTED] wrote:
> -- works
> open socket to "smtp.example.com:25|smtp"
> -- works
> open socket to value("pServerAddress&:&pServerPort")
> -- doesn't work
> open socket to value("pServerAddress&:&pServerPort&|smtp")


The problem is that | is an operator, and by putting it in a string and
then evaluating the string with the value function, you're forcing it to be
treated as an operator instead of a literal string.

This should work:

  open socket to (pServerAddress & ":" & pServerPort & "|smtp")

--
Jeanne A. E. DeVoto ~ [EMAIL PROTECTED]
http://www.runrev.com/
Runtime Revolution Limited - Power to the Developer!


Reply via email to