Hi
I'm trying to use a separate form with a webbrowser control on it to show context-sensitive help for my application (don't ask why I don't use the Help class). Let's call this form HelpBrowser. When the user requests help for the first time, HelpBrowser is created from the main thread and shown using HelpBrowser.Show() as I want it modeless.
This all works fine except for this; if the HelpBrowser is already open and the user opens a dialog box (modal form) from the main form, HelpBrowser can not be accessed by user anymore as long as the dialog box is open (it can not be moved, resized, scrolled, etc. anymore but it still shows new help if user requests it). I guess this is because the modal dialog box freezes all other open forms while it is open. However, if HelpBrowser is opened for the first time from a dialog box everything works fine.
Is there a way to keep control of the HelpBrowser form at all times even when a dialog box is opened from the main form, while still keeping everything in one process? Passing the main form as an argument when calling Show doesn't make any difference.
Thanks
I'm trying to use a separate form with a webbrowser control on it to show context-sensitive help for my application (don't ask why I don't use the Help class). Let's call this form HelpBrowser. When the user requests help for the first time, HelpBrowser is created from the main thread and shown using HelpBrowser.Show() as I want it modeless.
This all works fine except for this; if the HelpBrowser is already open and the user opens a dialog box (modal form) from the main form, HelpBrowser can not be accessed by user anymore as long as the dialog box is open (it can not be moved, resized, scrolled, etc. anymore but it still shows new help if user requests it). I guess this is because the modal dialog box freezes all other open forms while it is open. However, if HelpBrowser is opened for the first time from a dialog box everything works fine.
Is there a way to keep control of the HelpBrowser form at all times even when a dialog box is opened from the main form, while still keeping everything in one process? Passing the main form as an argument when calling Show doesn't make any difference.
Thanks