I am using a
Clipboard.SetText(textbox1.Text);
in order to copy the contents of a text box to my clipboard, but I want to be able to copy the entire form text as well.
I tried using
Clipboard.SetText(FrmMain.Text);
but it is not working, anyone have any thoughts or am i going about this the wrong way?