Posts

Showing posts from June, 2021
Image
 HUMAN FACE DRAW USING JAVA CODE: /*Java Program to Draw a Human Face using Applet*/ import java.applet.*; import java.awt.*; public class Human_Face extends Applet {      //Initialize the applet     public void init()     { setBackground(Color.cyan);     }     //Draw the human face     public void paint(Graphics g)      {          //Change color to cream         Color clr=new Color(255,179,86);         g.setColor(clr);         //Draw and fill the face         g.drawOval(100,100,250,300);         g.fillOval(100,100,250,300);         //Change color to black         g.setColor(Color.black);         //Draw the left eye         g.drawOval(160,185,40,25);         g.fillOval(160,185,40,...
Image
  EMPLOYEE PAYROLL MANAGEMENT SYSTEM IN JAVA USING NETBEANS WITH SOURCE CODE: https://drive.google.com/drive/folders/1YdMh4zaM1oh4TR4--X2LL5vkJUDenEKa?usp=sharing Project: – Employee Payroll management system – To download it for free(Scroll down) The employee payroll management system is a java project developed using NetBeans with backend SQLite as the database. In this project, the user will find the login module appearing on the home page. The user has to enter the username and password in order to get logged into the system as the system administrator. When the user gets logged in the system he can then do the following features: Register Employee Search Employee Salary Deduction Payment Check Allowance More features are available in this project as you can even generate the report of the employee. Also, you can audit the employee record and salary. You can even generate the slip of the payment made to the employee. This project allows you to insert profile images during ...