Posts

Showing posts from January, 2021

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.      */     @SuppressWarnings("unchecked")     // <editor-fold defaultstate="collapsed" desc="Generated Code">                               private void initComponents() {         jPanel1 = new javax.swing.JPanel();         User = new javax.swing.JTextField();  

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-fold defaultstate="collapsed" desc="Generated Code">                               private void initComponents() {         jPanel1 = new javax.swing.JPanel();         jLabel1 = new javax.swing.JLabel();         jLabel2 = new javax.sw