|
Hi, I've got a dialog box implemented as a Windows Form under .NET 2.0, in C#. If I open the dialog with myForm.ShowDialog(), everything works great. But, I need the form to be non-modal, so that my users can continue to interact with the main app while the dialog is open. So instead, I open it with myForm.Show(), or myForm.Show(parentWin), and in both of those cases, I lose the TAB key, it no longer moves focus around the dialog. I've seen some talk of non-Forms windows using IsDialogMessage() to process the Tab key and other dialog-specific messages. But I can't find the equivalent thing to do in Windows Forms. Any advice? Thanks!
|