Hello NG,
I have a problem displaying a C# Dialog modally.
I have 2 VB6 Forms visible (Form A and Form B). One is opening a C#
dialog modally (Form A).
This C# Dialog is not behaving like a modal Dialog, because I can
bring the second VB6 Dialog to Front (Form B).
I Don't know what I'm doing wrong.
Has anyone an idea how to make a C# dialog behaving like a normal
modal dialog.
Thanks in advance
Martin
Christian Fröschlin - 13 Feb 2008 08:26 GMT
> I have a problem displaying a C# Dialog modally.
Not sure how you integrated it with VB6, usually, you open
a C# form modally by calling ShowDialog instead of Show.
The property TopMost might also be of interest.