Re: Resizing a RichTextBox
One way would be to remove the richtextbox and then add it again so that you are adding it AFTER the menubar and toolbar have already been added and docked.
If you don't want to risk removing the richtextbox (maybe you added a lot of properties already) you could risk hacking the form1.Designer.cs file. Find the area (near the bottom) where there are a group of statements like 'this.Controls.Add(...'.
Try reversing the order of those statements.
Re: Resizing a RichTextBox
Thank you, I will try that out.