Any idea on how to do this? I need the values from textbox1.text and textbox2.text to be entered into form2.richtextbox1.text without altering any of the content in form2.richtextbox1.text. Please help, Many thanks in advance.
Hi. form2.richtextbox1.text = form2.richtextbox1.text + textbox1.text + textbox2.text i.e concatenate all string values from richtextbox & textboxes & assign this value to richtextbox
Cheers Ketan, solved the problem. I had another one too, these cleared whatever was already in richtextbox1 but I've solved this one too. thanks again.