How to change the order of tabs in JTabbedPane in Netbeans

jtabbedpanenetbeanstabs

This should hopefully be a very easy question.

Within Netbeans, using the GUI Swing editor I have four panels within a JTabbedPane.

Tab #4 I want to sit where Tab #1 is now, but I created it last so by default its at the end of the list.

How to I move it in the GUI in Netbeans?

Google has not been my friend on this one. I keep coming up with questions about tab order, (e.g. Tabbing through forms), rather than what I actually want.

Best Answer

Right Click on the JTabbedPane->Change Order->You will get option to Move Up and Move Down which will change the order of tabs.

Related Topic