At 12:44 PM 10/20/00, LYNN L. wrote:
>I'm not sure that I can fully appreciate the POM xtra. Maybe someone can
>help me with this surely simple problem.
>
> I need a command similar to <BR> in HTML.
And here are 4 more suggestions.
1. If you're using the append command, you can append the RETURN char as well.
append(doc, member("field1") &RETURN)
2. Create a string variable with the text from all the fields & append that
string in one blow:
theText = member("field1").text &RETURN
theText = member("field2").text &RETURN
...
append(doc, theText)
3. Set newFrames exactly where you want the text to appear (yech).
4. Use DrawText() to draw the text precisely on the page.
There may be others . . .
--
Mark A. Boyd
Keep-On-Learnin' :)
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list,
email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo. Thanks!]