getting Started
download And Install
Netbeans with JDK
start New Project
- make sure no other projects open
- File --> New Project
- Category: Java
- Project: Java Application
- next choose suitable name (suggest camelCase)
- untick Create Main Class and finish
adding A Form And First Launch
- in Projects Window right-click / double-tap on projectName --> New --> jFrame Form...
- chooose suitable form name (e.g. mainForm) and click Finish
- go File --> Project Properties (yourProject) --> highlight Run in Categories list --> Browse for Main Class
- select the name of your jFrame Form (e.g. mainForm) and click Select Main Class, OK
- hit Play Button