R rigamonk Feb 22, 2005 #1 Is there a way to save richtext from a richtextbox into an access DB using vb.net? thanks patrick
C Chris Calzaretta Feb 22, 2005 #2 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
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
H Herfried K. Wagner [MVP] Feb 22, 2005 #3 rigamonk said: Is there a way to save richtext from a richtextbox into an access DB using vb.net? Click to expand... Simply store the string returned by the richtextbox's 'Rtf' property in the database.
rigamonk said: Is there a way to save richtext from a richtextbox into an access DB using vb.net? Click to expand... Simply store the string returned by the richtextbox's 'Rtf' property in the database.
R rigamonk Feb 23, 2005 #4 Simply store the string returned by the richtextbox's 'Rtf' property in the database. Click to expand... Perfect! I slapped my head on this one. thanks
Simply store the string returned by the richtextbox's 'Rtf' property in the database. Click to expand... Perfect! I slapped my head on this one. thanks