how to have modal dialog in c#?
I am launching an exe (child) from a main exe (parent)
the parent exe is in c++
the child exe is in c#
in child exe, i have a code
thisApp.showdialog() // this causes the child's UI to be shown
however, the child dialog is not modal... while it is up, i can click away from it and access the parent window
how to have a modal dialog with the above setup?
Re: how to have modal dialog in c#?
Perhaps you have to specify the owner of the modal?
Re: how to have modal dialog in c#?
I was thinking the same thing... but he'd have to specify the C++ process as the owner... is that possible?