Having a problem, maybe someone can help: I have a DataReport in my project that prints from multiple places so I have a global procedure to handle printing. One of the fields it gets from my DB is RTF text; I need a way to convert this RTF to plain text before putting it into the RPT (I'm putting it into a LBL, not a bound TXT).
To convert the RTF, I've tried using:
in the global procedure, but that didn't work; like the class isn't named that or something. Does any know why it might not be? Or another way to easily convert RTF to plain text?
Thanks a lot.
To convert the RTF, I've tried using:
Code:
Set objRTF = CreateObject("RichTextLib.RichTextBox")
Thanks a lot.