//————–Output————————– //————Full Source Code—————— //Programmer:Akinwale Owi //Company: Dagba Computers //Program Purpose: GridLayout Example using JRadioButtons package dagbacomputers; //Imports import java.awt.GridLayout; import javax.swing.JRadioButton; import javax.swing.JFrame; import javax.swing.JLabel; import…… Read more “Java #52: GridLayout Example”
Category: Java Programs
Java #50: How to Export a Java Project in NetBeans
1. Make sure the project is highlighted in the window on the left 2. Go to File and Click Export Project – 3.Click Browse to choose where…… Read more “Java #50: How to Export a Java Project in NetBeans”
Java #49: BorderLayout App, Multiplies Two Doubles
———————Output———————- ———————Full Source Code———————— //Programmer:Akinwale Owi //Company: Dagba Computers //Program Purpose: Multipy Two Doubles on a JFrame – Product on New JFrame package dagbacomputers; //Imports import javax.swing.*;…… Read more “Java #49: BorderLayout App, Multiplies Two Doubles”
Java #48: BorderLayout App that Adds two Ints
———————Output———————– ———————Full Source Code———————– //Programmer:Akinwale Owi //Company: Dagba Computers //Program Purpose: Add two Integers on a JFrame – Sum on New JFrame package dagbacomputers; //Imports import javax.swing.*;…… Read more “Java #48: BorderLayout App that Adds two Ints”
Java #47: First and Last Name Swap App (Strings Only)[BorderLayout]
—————————-Sample Output————————— —————————-Full Source Code———————- //Programmer:Akinwale Owi //Company: Dagba Computers //Program Purpose: First and Last Name Swap App package dagbacomputers; //Imports import javax.swing.*; import java.awt.BorderLayout; import java.awt.Container;…… Read more “Java #47: First and Last Name Swap App (Strings Only)[BorderLayout]”
Java #46: How To perform Math Calculations between Classes
———–Output————— ————Full Source Code————- //Programmer: Akinwale Owi //Company: Dagba Computers //Program Purpose: Perform Math Calculations between Classes package dagbacomputers; /** * * @author Akin */ public class…… Read more “Java #46: How To perform Math Calculations between Classes”
Java #45:How to Print from another Class in Java [Program has 2 Classes]
———–Source Code——————- //Programmer: Akinwale Owi //Company: Dagba Computers //Program Purpose: Create and print from multiple classes in a program package dagbacomputers; /** * * @author Akin */…… Read more “Java #45:How to Print from another Class in Java [Program has 2 Classes]”
Java #44: How to Print out the Year and Day of the Month in Java using the Calendar Function
————–Source Code Screenshot—————- —————–Full Source Code——————- //Programmer: Akinwale Owi //Company: Dagba Computers //Program Purpose: How to use the Calendar Function to Print out the Year, and day…… Read more “Java #44: How to Print out the Year and Day of the Month in Java using the Calendar Function”
Java #43: How to add Days, Months, and Years to a LocalDate in Java
——-Source Screenshot———— ——-Full Source Code————– //Programmer: Akinwale Owi //Company: Dagba Computers //Program Purpose: Adding days, months, and years to a LocalDate package dagbacomputers; /** * * @author…… Read more “Java #43: How to add Days, Months, and Years to a LocalDate in Java”