![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Newbie
Join Date: Apr 2006
Posts: 9
Rep Power: 0
![]() |
java gui help needed
hey guys i am thinking of building a gui application for a video rental system using java. can anybody give me recommendation in howw to do it.
|
|
|
|
|
|
#2 |
|
Hobbyist Programmer
Join Date: Apr 2006
Posts: 136
Rep Power: 0
![]() |
Knowledge of Swing's JComponents and JPanel with Layout Managment will do you good. Try googling "Java Swing" or "Java AWT". You will find some good shit!
|
|
|
|
|
|
#3 |
|
PFO Founder
![]() ![]() |
What do you already know about java? The main java gui lib is Swing, so I would recommend looking into that. http://java.sun.com/docs/books/tutorial/uiswing/ Also Netbeans which you can get from sun comes with a gui builder for java that is a drag and drop type of creator.
__________________
BIG K aka Kyle Programming Forums Kyle K Online Please do not PM or email me programming questions. Post them in the forums instead. |
|
|
|
|
|
#4 |
|
Newbie
Join Date: Mar 2006
Posts: 4
Rep Power: 0
![]() |
Alot of things that can be used, so you'd need to be quite specific on the user interactivity you want
|
|
|
|
|
|
#5 |
|
Newbie
|
When I make GUI programs in Java I always no matter what need to import the following packages:
java.awt.*; java.awt.event.*; javax.swing.*; "java.awt" has several packages you will want to use when creating a GUI program, such as Color and Graphics. "java.awt.event" has all of the listening interfaces, such as MouseListener and KeyListener. And of course "javax.swing" has the GUI packages. Of course, learning how to use these packages is up to you, but at least now you have a place to start. |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|