Most likely your issue is going to be due to the scope of the richtextbox controls. By default in WinForms when you create a control in a form, it has the scope of Private. This means that the control will not be directly accessible from another form's code. There are several ways around this. The simplest would be to change it to a broader scope in this declaration (Public/Internal) which would than allow you to do something along the lines of this:
richTextBox1.Text = Form2.richTextBox1.Text;
*This assumes your code is in Form1 and your second form is named Form2. Obviously that would need to be changed accordingly.
This is not considered good practice because of potential risks associated with allowing any other section of your program to edit the controls contained on this form. Your ideal solutions for passing information to a form are either via the constructor, a properly scoped method, properly scoped property, or in some cases via an event depending on the type of information and when it can be modified and what it is used for.
Without knowing too many details about your specific case, I would probably recommend using a method because this would be the simplest case.
public void UpdateText(string value) {
richTextBox1.Text = value;
}
This would allow other forms and controls to call this method which would in turn update the text of the richTextBox.
I will note that none of these examples should be used in production code (I do not show how to handle cross threading issues, or data validation), but I presume from the nature of the question you are doing this more as a learning exercise.