Date:  11/02/2004 08:52:43 PM Msg ID:  002335
From:  Joe Goldsmith Thread:  002335
Subject:  MORE ASP FORMAT TO FoxWeb
How do I substitute an ASP string as a function (first position) parameter with the Fox variable M/MergedText such as:
 
ASP:
Set Font = Doc.Fonts("Helvetica")
loParams = "x=0; y=650; width=612; alignment=center; size=50"
loPage.Canvas.DrawText "Hello World!", Params, Font
 
To FoxWeb:
 
LOCAL MergedText
M.MergedText = Request.QueryString('mletter')
loFont = Doc.Fonts("Helvetica")
loParams = "x=0; y=650; width=612; alignment=center; size=50"
loPage.Canvas.DrawText (M.MergedText, loParams, loFont)
 
No matter how I format M.MergedText I either get an error, output is "M.MergedText", or blank. Anyone have an idea please?
 
Joe