Postingan

Menampilkan postingan dari Juni, 2021

Kalkulator Sederhana

Assalamualaikum warahmatullahi wabarakatuh.                        Pada blog saya kali ini, saya akan menjelaskan kodingan tentang aplikasi Kalkulator.  /*  * To change this license header, choose License Headers in Project Properties.  * To change this template file, choose Tools | Templates  * and open the template in the editor.  */ package latihan1; /**  *  * @author oryza  */ public class Game extends // Nama kelasnya adalah kelas game// javax.swing.JFrame { Merupakan Bingkai//     /**      * Creates new form Game// Membuat game//      */     public Game() {         this.setUndecorated(true);         this.setLocationRelativeTo(null);         initComponents();     }     /**      * This method is called from within the constructor to initializ...

LOGIN

 /*  * To change this license header, choose License Headers in Project Properties.  * To change this template file, choose Tools | Templates  * and open the template in the editor.  */ package latihan1; /**  *  * @author oryza  */ public class Login extends javax.swing.JFrame {     /**      * Creates new form Login      */     public Login() {         initComponents();     }     /**      * 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">//GEN-BEGIN:initComponents     private void initComponents() {     ...