Getting IWin32Window interface of a MMC snap-in

350 Views Asked by At

I'm building my own mmc snap-in using C#, and it one of the actions causes ShowDialog.

The problem is that the show dialog doesn't block the mmc window, So i want to use ShowDialog(IWin32Window) but how can I get the window handle?

Thanks.

1

There are 1 best solutions below

0
On BEST ANSWER

I've found the solution.

I needed to use the SnapIn.Console.ShowDialog and not the ShowDialog function of the dialog itself.