Before you begin, you need to install the following software on your computer:
Java Standard Development Kit (JDK™) version 1.4.2 (
Setting Up The Module Suite
The first thing you have to do is to create a sample project. We will use a Module Suite. Here you can use the wizard that the IDE provides.1.
Choose File > New Project (Ctrl-Shift-N). Under Categories, select NetBeans Modules. Under projects, select
Module Suite
and click Next.2.
In the next panel you have to give the suite a proper name, such as
LoginSuite
, and set the location to any directory on your computer. Click Finish.3.
Now the IDE has created an empty suite for you. You can even test it when you right-click the module suite name and choose run. There will start a whole new IDE. Butwe do not need a complete IDE. So if you like, you can make the start of your application faster by following these few optional steps:4.
Right-click the module suite name. Choose 'Properties'. Select 'Libraries'. Now you see on the right side a list of 'Platfom Modules'. Deselect all except of 'platform7'.Click OK.5.
If you run the application again there will only be a window with the essential buttons and menus. It should look like this:
Leave a Comment