Friday, May 25, 2012

How to use jTabbedPane in Netbeans

2 comments
In this post we learn how to use jTabbedPane and how to create jTabbedPane container in netbeans. jTabbedPane is a java swing container useful to customize GUI in small frame. Open new project in Netbeans. Find Tabbed Pane in pallet ---> just drag and drop Tabbed pane over the jFrame or You can also use jPanel in background. Enlarge the TabbedPane as you require. Here is the main step for creating jTabbedPane Container. Here you have to ...
Continue reading →
Wednesday, May 16, 2012

How to generate javadocs using NetBeans

1 comments
Javadocs is same as java API which is use for programming. Here is a details on how to generate javadocs using netbeans. Always While completing new projects we need to generate separate documentation for projects. Javadocs is a answer for all. javadocs build on classes which is in your project. Format of javadocs is in HTML files which is same as java API documentation. You can add your own comments, and more about your projects. Javadocs is a very ...
Continue reading →
Saturday, May 12, 2012

How to customize jTable using Netbeans

2 comments
Learn how to customize jtable using Netbeans. In this post we learn how to set color grid line,Visibility of vertical and horizontal grid line, and how to set foreground color to selected cell. A simple single line code tell us how to customize jtable. First create global object for DefaultTableModel and create settable() method in constructor. See my previous post How to set color in jTable column header using NetBeans for how to call settable() ...
Continue reading →
Friday, May 11, 2012

How to set color in jTable Column Header using NetBeans

2 comments
All NetBeans user see How to set background color and foreground color to jTable Column Header by use of DefaultTableModel.In my preveous post we learn how to display values in jTable by using DefaultTableModel.Netbeans provides Swings Controls which minimize our coding time and helps to build GUI faster than core coding. Discription of program :Create a New jframe in NetBeans. From Palette drag and drop table over the jFrame. Another way to open ...
Continue reading →
Tuesday, May 8, 2012

How to add jInternal frame and jPanel into jDesktopPane

0 comments
jInternal frame is a nothing but another window which can helps to improve GUI in your project. jPanel is another side which is widely use in projects for making better GUI. Can we use jInternal frame and jPanel together?.Answer is Yes. See how to add jInternal frame and jPanel into jDesktopPane. Make GUI using Netbeans as per your choice.Here is a sample GUI. When you run this GUI,This is look like as.. Code for adding jPanel into jDesktopPane. ...
Continue reading →

How to display values in jTable in netbeans

4 comments
Now we take a look of how to display values in jTable using netbeans with source code.First create a simple jFrame form an build GUI like this. For building GUI don't bother about it, You have to just drag and drop the components from palette. Once you completed GUI then we need to create database for storing values. Use any database here is a sample database with table. If you create database in Ms Access you must set the database connectivity.To ...
Continue reading →
Sunday, May 6, 2012

How to set background image to jFrame form in netbeans

6 comments
Some times we get problem while customizing code.Problem is we don't know how?. Here is simple example of how to set background image to jFrame form in netbeans. First open new project and name it. Right click on source package and add new jFrame form Set the title for jFrame form, Right click on jFrame and type title in front of title option. For setting background image to jFrame form first we should set Null Layout because default layout is ...
Continue reading →