difference between Jdialog and JFrame

though i know one difference of these two top-level containers such that, Jdialog dont have the iconifying buttons like JFrame.I would like to know whether they have any other differences.If they have,please list out them.
[229 byte] By [rafi_md@suna] at [2007-11-26 13:38:13]
# 1

There is a subtle difference between these components.

JFrame is a fully-functional Windows window, where as JDialog is a popup-sort-of window.

That sounds pretty weak. Essentially, you should use a JFrame for the part of your program that is always visible (unless it's minimized),

while JDialog's pop up when you need them, and disapear when you don't.

drvijayy2k2a at 2007-7-7 22:30:31 > top of Java-index,Java Essentials,Java Programming...