Posts

Image
                                                                      Learning to Code                                                                  ArrayList.                                                                  Question - I mplementing all methods of ArrayList  Create an ArrayList Num with size 12. add  6 numbers 12,14,65,56,80,100 adjust the size automatically.  Show the each item of arraylist iterating.  Remove 100 and find last index of 14. Check whet...

How Well You know MYSQL

                                                                Question:- Create a Table named as Elevn with A database named Markheet where Table is like this. where RNO and Name = Varchar and Physics ,maths,Chemistry,total= integer     RNO            NAME           Physics           Maths          Chemistry           Total      1                 Ram                89                    92                  83                  2...

Basics of MYSQL

Image
                                                          Syntax You Must Know- You Must learn this syntax by heart Then You can solve any query in Mysql. ​

How to Create a Video Login page in Jframe In Java Netbeans

Image
  Here Is the source Code Subscribe and comment !! package javaapplication4;          import jaco.mp3.player.MP3Player; import java.io.File; import javax.swing.JFrame; import javax.swing.JOptionPane; /**  *  * @author jeeva  */ public class Loginpage extends javax.swing.JFrame {          public Loginpage() {         initComponents();                  setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);         setExtendedState(JFrame.MAXIMIZED_HORIZ);          setResizable(false);          }     /**      * This method is called from within the constructor to initialize the form.      * WARNING: Do NOT modify this code. The content of this method is always      * regenerated by the Form Editor.      */     @Su...

How to Make a Registeration Gui Form in Java Netbeans

Image
    Here is the Screenshot of the Code. Here is the code- import java.io.File; import javax.swing.JFrame; import javax.swing.JOptionPane; public class Register extends javax.swing.JFrame {     /**      * Creates new form Register      */     public Register() {         initComponents();         Submit.setEnabled(false);         setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);         setExtendedState(JFrame.MAXIMIZED_HORIZ);          setResizable(false);     }     /**      * This method is called from within the constructor to initialize the form.      * WARNING: Do NOT modify this code. The content of this method is always      * regenerated by the Form Editor.      */     @SuppressWarnings("unchecked")     // <editor-fo...

Airline Ticket Reservation System Project in Java Netbeans

Image
                                             Fly the Friendly Skies Airline Ticket Reservation System In Java is a free  project made by Learning to Code. This project Features:- Use of Jframe Gui Design Javax tools Modern login / Register Systems Security and Protection Payment via cards and bank accounts and Much More. Here are some Screenshots of This project-     Hope you find this project helpful.    Help us reach 1k subs on youtube.    Do Subscribe the Channel and get This project for free.   Youtube Channel :- Learning to Code.  Link for video- https://www.youtube.com/watch?v=JuDVAn_KxK4&t=131s

How to Create a ProgressBar with a button in Java Netbeans.

Welcome To Java Tutorials Presented by Learning To Code                                             Java Netbeans First you need to implement ActionListener with your class- public class progresso implements ActionListener{      public void actionPerformed(ActionEvent evt){               int n= progress.getValue(); // here progress= progressbar               if(n<100){                   n++;       // label means the text which get updated,(0%)                    label.setText(Integer.toString(n)+"%");              progress.setValue(n);                                ...