Du kan bruge kodningsfunktioner fra System.Text
navneområde:
-
for at gemme i klatfelt:
Dim blob_bytes_to_db As Byte() = System.Text.Encoding.ASCII.GetBytes(RichTextBox1.Rtf)
-
for at indlæse blob i richtextbox:
RichTextBox1.Rtf = System.Text.Encoding.ASCII.GetChars(blob_bytes_from_db)
Bemærk :Med RichTextBox1 .Text
egenskaben kan kun få/indstille ren tekst. Hvis du ønsker at få/indstille formateret tekst med alle RTF-koder, skal du bruge .Rtf
ejendom.