I create Form2 from Form1. I want that Form2 opens on the second monitor. How I can do this? I use this code:
private void button1_Click(object sender, EventArgs e)
{
Form2 dlg = new Form2();
dlg.Show();
}
How to change this code for this? Thanks for all.