So I am building a program at the minute where I need a MessageBox to show over an RDC (Remote Desktop Connection) but I can't seem to manage it. Any tips?
Here is the code I am currently trying if it helps.
public void button2_Click(object sender, EventArgs e)
{
MessageBox.Show(this, "Hello");
}
Cheers
Tom