I'm trying to launch a remote desktop session to a specified IP on an onClick function on a menuItem in VS.
private void NAMEHEREToolStripMenuItem_Click(object sender, EventArgs e)
{
// launch remote desktop to 192.168.0.1
}
So I click NAMEHERE and it should open remote desktop and automatically connect to the IP I've given it. How can I do this? I've googled different things but cant quite find what I want.
Thanks!