You are required to make a car registration form (As made inAssignment # 2, You
ID: 3618896 • Letter: Y
Question
You are required to make a car registration form (As made inAssignment # 2, You can use your previous assignment’s code).You will take the values from the user and save these into MSAccess Database.
Details:
Then user will click save, The Records will be saved in thedatabase.
Note3: You can use layout as null and the placelabels and text fields accordingly.
Note4: No need to worry if you are unableto make the GUI of the form 100% according to the about figure. Butall the elements should be there.
Then user will click save, The Records will be saved in thedatabase.
Note3: You can use layout as null and the placelabels and text fields accordingly.
Note4: No need to worry if you are unableto make the GUI of the form 100% according to the about figure. Butall the elements should be there.
Explanation / 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.