help window blocked when accessed from modal dialog

Activating my CSH from a modal dialog leaves not only the main frame inactive but the help window as well preventing further navigation in the help.

Do I have to start the help in a separate JVM earning a load of communication problems or is there an elegant way to circumvent this restriction?

I'd be happy for comments...

Holger

[363 byte] By [hiobsun] at [2007-9-26 2:28:52]
# 1

I think the following code will fix the problem. src is the modal dialog and m_broker is your help broker.

We need the following call otherwise modal dialog won't allow the help dialog to gain focus when clicked on...

((DefaultHelpBroker)m_broker).setActivationWindow( src);

alholbrook at 2007-6-29 9:45:12 > top of Java-index,Desktop,Developing for the Desktop...
# 2
Perfect! It works fine. Thanks a lot......Holger
hiobsun at 2007-6-29 9:45:12 > top of Java-index,Desktop,Developing for the Desktop...
# 3
...but the HelpWindow is not maximizable?I can close it but there is no icon to maximize it.Any ideas?ThxDT
DarthTrader at 2007-6-29 9:45:12 > top of Java-index,Desktop,Developing for the Desktop...