I should add that if you wish to view the RTF with RBase controls, then you
should store as VarChar only.
----- Original Message -----
From: "Mike Byerley" <[email protected]>
To: "RBASE-L Mailing List" <[email protected]>
Sent: Tuesday, May 17, 2011 5:52 PM
Subject: [RBASE-L] - re: write file to var
For RTF you could use either datatype, VarChar or VarBit, so here is how
you would declare and then assign:
Set Var vSomeVarName VarChar = ['FullPathNameOfTheFile']
You can use VarChar because the RTF contains only Ascii printable
characters, but for general file assignments, you would do:
Set Var vSomeVarName VarBit = ['FullPathNameOfTheFile']
----- Original Message -----
From: "Luc Delcoigne" <[email protected]>
To: "RBASE-L Mailing List" <[email protected]>
Sent: Tuesday, May 17, 2011 4:11 PM
Subject: [RBASE-L] - re: write file to var
HI,
I have a report that I print to .rtf file.
Then I have to load the contents of that rtf file into a BLOB field.
What's the best way to do this ?
THanks a lot !
Luc Delcoigne