I have a rich text box that is only saving around 80 characters. The database I am using is Excel. I can go to Excel and type in 500 characters and the rich text box in my program will display it. but if I enter more then about 80 characters in the rich text box it won't make it to excel. I have the max length set to "0" and that doesn't work. I have set it at 500 and 1000 and it still kicks out anything larger then 80 characters. I have set the max length in code

RichTextBox1.MaxLength = 1000

it still won't save anything more then 80 characters. What could I be doing wrong.