Saving richtext

  • Thread starter Thread starter rigamonk
  • Start date Start date
R

rigamonk

Is there a way to save richtext from a richtextbox into an access DB using
vb.net?


thanks
patrick
 
Yes you can export the richtext out of the richtextbox as richtext.

Only problem is you need to stick with microsoft standards of Richtext or
you can run in to problems with rich text not being displayed correct
 
rigamonk said:
Is there a way to save richtext from a richtextbox into an access DB using
vb.net?

Simply store the string returned by the richtextbox's 'Rtf' property in the
database.
 
Back
Top