Group, First off I've learned quite a bit from this discussion. Thanks for how to include a single quote. I'm using the (CHAR(039)) function now but '''' might come in useful in the future.
My command now passes the parameter but it did leave me with a question. Allow me to elaborate This parameter building works. SET VAR vd1 DATE = .#DATE SET VAR vd1txt TEXT = (CTXT(.vd1)) SET VAR vUsing TEXT = ((CHAR(039))+'Using '+' '+.vd1txt+(CHAR(039))) SET VAR vAction TEXT = + 'PROPERTY RBASE_FORM_ACTION MyAction ' + .vUsing) This gives me the following results; vUsing = 'Using 04/25/2005' vAction = PROPERTY RBASE_FORM_ACTION MyAction 'Using 04/25/2005' Now for the question. The following does not work; PROPERTY RBASE_FORM_ACTION MyAction 'Using 04/25/2005' However this does work; &vAction I'm satisfied that my form action works with the &vAction, but I don't see why the other one does not. Thanks for all the help Jan
