How can I force the focus of an form? .Focus() is not working for me.
.Focus()
private void button1_Click(object sender, EventArgs e) { var form = new
Try this:
this.BringToFront(); this.Activate();