views:

39

answers:

1

One of my coworkers just came to me with an interesting problem.

He's displaying a WinForms form from a PowerShell script, and while the form opens successfully it does not get focus. Instead the PowerShell command window retains focus until the form is explicitly clicked.

The script is being run from the PowerShell command line using .\ScriptName.ps1.

We've tried various combinations of dlg.ShowDialog() (with and without passing $this), dlg.Show(), dlg.Focus(), etc with no luck.

Does anybody know how to give the form focus when it's displayed?

+3  A: 

This is how we got it working (the first line is the one we were missing):

$WinForm.Add_Shown({$WinForm.Activate()})
$WinForm.ShowDialog($this) | out-null
Lawrence Johnston
Definitely mark that as answer :)
Jaykul