I thought I had this solved, but I don't. I have this in the Form_Load:
VB Code:
  1. DPlatform1.Clear()
  2.         OleDbDataAdapter1.Fill(DPlatform1)
  3.         rtbPlatformTextBox.DataBindings.Add("Rtf", DPlatform1.Tables(0), "Answer")
When I run the program, the first answer is show as it should, in true RTF format, but If I click on another question, the richtexbox just goes blank, even clicking back on the first question still keeps the richtextbox blank.

both questions do have the rtf format, how come the answers are blank?