Tapan Prajapati wrote:i want to use applet in background of frame in swing . is it possible how?
This is similar to your other post and is almost a cross-post, a no-no for these forums.
There are several things that can be done but first of all, I'd recommend that your GUI classes not be geared towards creating JApplets but rather JPanels, and then you can decide if you want to place the JPanel into a JApplet's contentPane to be used as an applet, or in a JFrame's contentPane, to be used as a stand-alone program. A JPanel can also be dropped into a JTabbedPane with ease.
But having said this, a JApplet extends Component and it itself can be dropped into a JFrame or JTabbedPane, .... but I like my first suggestion better.