Hello to ev'ry one,
I have made search through internet how to save richtextbox content to Access Database and retrieve it again, but till now I haven't found any solutions.
Here are a part of my code:
For
The text stored in MS Access is converted to Plain Text format.
May anyone can help me, please?
I use Microsoft Visual Studio Express 2013, Microsoft Access 2013.
I have made search through internet how to save richtextbox content to Access Database and retrieve it again, but till now I haven't found any solutions.
Here are a part of my code:
Code:
str = "INSERT INTO [Database](Word, Pronunciation, Occurence) VALUES (" & Me.TXT_WORD.Text & ", " & Me.TXT_DESCRIPTION.Rtf & ", " & Me.TXT_OCCURENCE.Text & ")"
Dim cmd As OleDbCommand = New OleDbCommand(str, myConnection)
cmd.ExecuteNonQuery()
Code:
Me.TXT_DESCRIPTION.Rtf
May anyone can help me, please?
I use Microsoft Visual Studio Express 2013, Microsoft Access 2013.