in the Immediate window I typed:
thecommand = chr(34) & " & thecommand
and got the message
Unterminated string constant
(the value of thecommand was not changed)
I even tried using the MID function to remove one of the quotes... first I used chr(34) to insert two double-quotes, then tried with MID to start at position 1 and it grabbed both double-quotes... yet if I started at position 2 it grabbed NEITHER double-quote i.e. the two double-quotes count as a single position.
If we removed the space from the folder name we would have to update a LOT of deploy scripts... so I want to be sure there's no other choice...
Thanks again for your help
Main Topics
Browse All Topics





by: gecko_au2003Posted on 2009-02-03 at 10:35:04ID: 23540414
chr(34) & "
So that way it puts one " & chr(34)
??