Hi,
What's the problem (tested with VFP 8 + 9) with following textmerge?
----8<----
#DEFINE myConst "myText"
TEXT TO lcStmt TEXTMERGE NOSHOW
select * from myTable where field = "<<myConst>>"
ENDTEXT
---->8----
Ok, this would be a workaround, but it's not that nice :(
----8<----
#DEFINE myConst "myText"
TEXT TO lcStmt TEXTMERGE NOSHOW
select * from myTable where field = <<'"' + myConst + "'">>
ENDTEXT
---->8----
Thanks
Marco