To All
I have text stored in VarChar(max) SQL Server field and I have no problem importing and exporting the text in Notepad.
I want to be able to print the text and have it come out the way it is formatted in the field .. when I look at the data like this :
MsgInfo displays the text correctly formatted perfectically .. just as it was inserted into the SQL table .. however, I am trying to print this USING
and all I get is the first line that runs off the page .. surely there must be a way to print formatted text easily at certain co-ordanents on a page ??
Thanks
Rick Lipkin
I have text stored in VarChar(max) SQL Server field and I have no problem importing and exporting the text in Notepad.
I want to be able to print the text and have it come out the way it is formatted in the field .. when I look at the data like this :
cTEXT := oRsLett:Fields("letter_text"):Value
MsgInfo( cTEXT )MsgInfo displays the text correctly formatted perfectically .. just as it was inserted into the SQL table .. however, I am trying to print this USING
oPRINT:StartPage()
cDEFA := SET(7)
IF FILE( cDEFA+"\AGENCY.BMP" )
oPRINT:SayBitMap( 10,500, cDEFA+"\AGENCY.BMP", 900,700 ) //800,500
ENDIF
oPrint:Say ( 1000, 100, cTEXT , oFONT )
oPRINT:EndPage()and all I get is the first line that runs off the page .. surely there must be a way to print formatted text easily at certain co-ordanents on a page ??
Thanks
Rick Lipkin