You are required to make a car registration form (As made in Assignment #2, You
ID: 3618922 • Letter: Y
Question
You are required to make a car registration form (As made in Assignment #2, You can use your previous assignment's code). You will take the values from the user and save these into MS Access Database. Database Connectivity in Java Event Handling in Java First your program will display a GUI form. As shown below Then user will click save, The Records will be saved in the database. You can use layout as null and the place labels and text fields accordingly. No need to worry if you are unable to make the GUI of the form 100% according to the about figure. But all the elements should be there. Use the System DSX Xamed as carDSNExplanation / Answer
Please rate thanks import java.awt.GridLayout; import java.util.*; import javax.swing.*; class Grid extends JFrame { Grid(){ setLayout(new GridLayout(6,1)); //Create panels JPanel p1 = new JPanel(); JPanel p2 = new JPanel(); JPanel p3 = new JPanel(); JPanel p4 = new JPanel(); //create labels JLabel l0 = new JLabel("Car registrationform"); JLabel l1 = new JLabel("Engine number: "); JLabel l2 = newJLabel("Model "); JLabel l3 = newJLabel("Maker: "); JLabel l4 = new JLabel("Ownername "); //create textfields JTextField t1 = new JTextField(10); JTextField t2 = new JTextField(10); JTextField t3 = new JTextField(10); JTextField t4 = new JTextField(10); //create button JButton b1 = new JButton("Save"); //add to panels p1.add(l1); p1. add(t1); p2.add(l2); p2.add(t2); p3.add(l3); p3.add(t3); p4.add(l4); p4.add(t4); //add to frame add(l0); add(p1); add(p2); add(p3); add(p4); add(b1); } } public class Main { public static void main(String [] args) { JFrame frame = new Grid(); frame.setSize(300,200); frame.setVisible(true); } }
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.