posted 21 years ago
Hi Xi,
This was another one of my many questions trying to get people to explain their choices.
There is nothing wrong with using a JDialog, and in fact it could give you some nice features if you want them. For example, if the user minimizes your main application window, the JDialog will be automatically minimized as well.
Personally I used a JFrame for my online help. The online help was integrated into the submitted application (so the user clicked on of the help buttons, and a help window popped up) but it could also work as a stand alone application - you cannot get that with a JDialog (or at least not as cleanly).
Regards, Andrew