private void Cottage_Click(object sender, EventArgs e)
{
richTextBox1.Text = "create cottage";
richTextBox1.Text = "create Bob";
}
So when I run the code what gets printed is Bob of course I knew this would happen from the moment I wrote the code but I do not know what to put instead, I want to be able to print both on two seperate lines also I will have many other buttons printing into this same RichTextBox so I need to know how to move from my curent line and print on the next line everytime I click on the button....Thank you :)
Also How would I make a If statement where if the button is clicked then it prints "Hola" into the richtextbox?