Can you suggest a program that i can submit?
I need your help for suggestions..
any programs that involves GUI..
simple programs could be..
Thank you!
Can you suggest a program that i can submit?
I need your help for suggestions..
any programs that involves GUI..
simple programs could be..
Thank you!
Write a GUI program that has 3 text fields. Get two values in the two text fields and display sum in the third field. ANd Use a button to do this...
(assuming ure just starting out)
GUI is just a shell wrapping around your real work. In other words, it is more like a presentation. If you have done any program that displays results on monitor, you can add GUI to it, such as replace how you enter inputs or display the output.
Write a GUI program that has 3 text fields. Get two values in the two text fields and display sum in the third field. ANd Use a button to do this...
(assuming ure just starting out)
It is just my first time.. we have a project in school.. can you suggest any simple but useful program that i can submit? thank you for helping.. i really need this..
GUI is just a shell wrapping around your real work. In other words, it is more like a presentation. If you have done any program that displays results on monitor, you can add GUI to it, such as replace how you enter inputs or display the output.
i have done some GUI examples but i do not know how to arrange the buttons i made... can you help me on how to code in making specific location of the buttons i made? i really need it for my project.. thank you so much for your reply..
Use a LayoutManager of your choice. Hard Coding components to specific locations is tough and not recommended. Use the LayoutManagers.
Look here:
http://download.oracle.com/javase/tutorial/uiswing/layout/visual.html
Use a LayoutManager of your choice. Hard Coding components to specific locations is tough and not recommended. Use the LayoutManagers.
Look here:
http://download.oracle.com/javase/tutorial/uiswing/layout/visual.html
What program can i made?? i'm just a beginner.. please help..
Try BorderLayout. I'll try to give you a step-by-step walkthrough:
public class MyFrame extends JFrame { ... }
JPanel contentPane = (JPanel) this.getContentPane()
contentPane.setLayout(new BorderLayout())
contentPane.add(new JTextArea("my text"), BorderLayout.CENTER)
contentPane.add(new JButton("my button"), BorderLayout.NORTH)
this.setVisible(true)
Some slightly more difficult things to try:
private JButton myButton = new JButton("my button");
myButton.addActionListener(this)
, and put code into an actionPerformed(...)
methodWe're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.