Page 2 of 2

Posted: Wed Jun 17, 2009 8:49 am
by chulett
That or "correct" the file you're creating to not include the quote characters.

Posted: Thu Jun 18, 2009 4:55 am
by srai
priyadarshikunal wrote:yes it won't work because you are comparing
"true"=true

here quotes are making the difference

Use one of the codes below

Code: Select all

Trim(Convert('"','',Convert(@FM,'',Execute_Command_3.$CommandOutput)))="true"


Trim(Convert(@FM,'',Execute_Command_3.$CommandOutput),'"',"A"))="true"

Convert(@FM,'',Execute_Command_3.$CommandOutput)='"true"'
And let us know if it works.
Hi Kunal,

The follwoing code is working now-
Convert(@FM,'',Execute_Command_3.$CommandOutput)='"true"'

Thanks a lot for helping me on this.

Posted: Thu Jun 18, 2009 5:23 am
by chulett
Then it's time to mark this as Resolved using the button at the top of the page.