
Signature
Alex Dybenko (MVP)
http://Alex.Dybenko.com
http://www.PointLtd.com
Thanks for the suggestion.
However, I can't see how this would work with wanting to extract a few
hundred records. I would think that if I process each record one at a time
using the hidden form that the process would take too long.
Any other ideas?
> i would suggest to make a hidden form with rtf control and use control on
> it.
[quoted text clipped - 31 lines]
> >
> > Thanks
Alex Dybenko - 08 Feb 2005 19:06 GMT
You can also make a function which converts RTF to text, i once found few in
google to convert RTF to HTML, so you can easy modify it to plain text
version

Signature
Alex Dybenko (MVP)
http://Alex.Dybenko.com
http://www.PointLtd.com
> Thanks for the suggestion.
> However, I can't see how this would work with wanting to extract a few
[quoted text clipped - 43 lines]
>> >
>> > Thanks
Alex Dybenko - 09 Feb 2005 06:53 GMT
don't understand your concern, your function will look like:
docmd.openform "formwithRTF",,,,,acHidden ' this you can do once
If sRTFString <> "" Then
forms("formwithRTF").RTF.TextRTF = sRTFString
MakePlainTextfromRTF = forms("formwithRTF").RTF.Text
End If

Signature
Alex Dybenko (MVP)
http://Alex.Dybenko.com
http://www.PointLtd.com
> Thanks for the suggestion.
> However, I can't see how this would work with wanting to extract a few
[quoted text clipped - 43 lines]
>> >
>> > Thanks
Peter-d - 09 Feb 2005 08:49 GMT
Ok, I see what you mean. I was imagining at first a form with bound control.
This makes more sense. But I think my other solution will suit me better. One
less form in my project . I already have too many.
Thanks again.
> don't understand your concern, your function will look like:
>
[quoted text clipped - 51 lines]
> >> >
> >> > Thanks