
How to add jtextfield or jtabbedpane by coding using java netbeans?? plzz help

hi friend, To add the JTabbedPane you have to do the following steps :
import javax.swing.JTabbedPane; .... ....
JTabbedPane tp = new JTabbedPane(); ... ...
// To add tab addTab()method is used
tp.addTab();
// Number of tabs you want to add you will have to call above method that number of times.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.