By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!Greetings --
I have a btm file that takes as input a filename.
The code then used the @search[] function to find the file. For the most part
this works, fine, except for this filename
FPR R&D template 2008.doc
Is there anything I can add to the btm file to process this name?
setdos /c~
::do work here
setdos /c&
yourbatchfile.btm "FPR R^&D template 2008.doc"
setdos /x-5
::do work here
setdos /x+5
>Greetings --
>
>I have a btm file that takes as input a filename.
>
>The code then used the @search[] function to find the file. For the most part
>this works, fine, except for this filename
>
>FPR R&D template 2008.doc
>
>Is there anything I can add to the btm file to process this name?
On Mon, 20 Oct 2008 19:14:32 -0500, "JP Software Forums"
<[email protected]>,fpefpe <> wrote:
Perhaps quotation marks? This works here.
v:\> echo "%@search["FPR R&D template 2008.doc"]"
"V:\FPR R&D template 2008.doc"
For you what fails and how does it fail?