Hello, I donot understan why should I use Jdialog for example I made an application launcher that lauches other application by clicking on the buttons. that application launches other applications by using JFrames should I use Jdialog instead?
-----------------------------------------------------<BR> Koray GUCLU ~ the sky has no limit ~<BR> (B.s. Computer Engineer)<BR> Frankfurt am Main, Germany<BR> web : <A HREF="http://www.geocities.com/korayguclu/<BR rel="nofollow">" TARGET=_blank>http://www.geocities.com/korayguclu/<BR></A> mail: korayguclu@yahoo.com<BR>-----------------------------------------------------
Manfred Leonhardt
Ranch Hand
Joined: Jan 09, 2001
Posts: 1492
posted
0
Hi Koray, The advantage of Dialog over Frame is that Dialog can be made modal (waits for user interaction) and it will always remain on top of its parent. The advantage or Frame over Dialog is that the Frame can act as a separate application without interaction with other frames. It comes down to a personal preference and what you are trying to perform with the windows. Regards, Manfred.