en
Feedback
hgn330 πŸ’‹πŸ“

hgn330 πŸ’‹πŸ“

Open in Telegram

Projects with source code | Android | java |website development | Website : https://updategadh.com Admin https://t.me/Rishabhsaini0204 New project https://www.youtube.com/c/decodeit2 Buy ads: https://telega.io/c/projectswithsourcecode

Show more
4 310
Subscribers
No data24 hours
-587 days
-28130 days
Posts Archive
System.out.println(ae); } } JOptionPane.showMessageDialog( area2, "DATA SAVED SUCESSFULLY"); }; }); addWindowListener( new WindowAdapter() { public void windowClosing( WindowEvent we) { System.exit(0); } }); setSize(800, 800); setLayout(null); setVisible(true); setBackground(Color.cyan); } public static void main(String[] args) { new fee(); } }

SHARE(1, 50, 000)"); li2.addElement( "3 SHARE(1, 40, 000)"); li2.addElement( "5 SHARE(1, 20, 000)"); li2.addElement( "8 SHARE(1, 10, 000)"); li2.addElement( "bus(40, 000)"); final JList list2 = new JList<>(li2); list2.setBounds( 800, 300, 125, 125); JButton Receipt = new JButton("Generate Receipt"); Receipt.setBounds(600, 490, 150, 30); JButton b2 = new JButton("Reset"); b2.setBounds(750, 490, 150, 30); JButton Print = new JButton("Print"); Print.setBounds(900, 490, 150, 30); area2 = new JTextArea(); area2.setBounds(600, 540, 450, 240); add(l1); add(l2); add(l3); add(l4); add(l5); add(l6); add(l7); add(l8); add(l9); add(l10); add(l11); add(l12); add(l13); add(l14); add(tf1); add(tf2); add(tf3); add(tf4); add(tf5); add(tf6); add(tf7); add(tf8); add(area1); add(area2); add(l15); add(rb1); add(rb2); add(rb3); add(rb4); add(r5); add(r6); add(cb); add(cb1); add(cb2); add(list1); add(list2); add(b); add(label); add(Receipt); add(b2); add(Print); b.addActionListener(new ActionListener() { // Method to display the data // entered in the text fields public void actionPerformed(ActionEvent e) { String data = ""; if (list1.getSelectedIndex() != -1) { data = "You had selected the Group:" + list1.getSelectedValue(); label.setText(data); } if (list2.getSelectedIndex() != -1) { data += " and Hostel with the " + "facility of: "; for (Object frame : list2.getSelectedValues()) { data += frame + " "; } } label.setText(data); } }); // Reset the text fields b2.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent e) { area2.setText(""); area1.setText(" "); tf1.setText(""); tf2.setText(""); tf3.setText(""); tf4.setText(""); tf5.setText(""); tf6.setText(" "); } }); // Implementing the Print action Print.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent e) { try { area2.print(); } catch (java.awt.print .PrinterException a) { System.err.format( "NoPrinter Found", a.getMessage()); } } }); // Generating the receipt Receipt.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { area2.setText( "--------------------------------" + "-----------FEE RECEIPT----" + "--------------------------" + "--------------------------" + "-------------------\n"); area2.setText(area2.getText() + "Student Name: " + tf1.getText() + "\n"); area2.setText(area2.getText() + "Father's Name: " + tf2.getText() + "\n"); area2.setText(area2.getText() + "RollNumber: " + tf3.getText() + "\n"); area2.setText(area2.getText() + "Email ID: " + tf4.getText() + "\n"); area2.setText(area2.getText() + "Contact Number: " + tf5.getText() + "\n"); area2.setText(area2.getText() + "Wants to take: " + cb.getSelectedItem() .toString() + "\n"); if (rb1.isSelected()) { area2.setText(area2.getText() + "Wants to Join in " + "School of Engineering " + "and Applied Sciences\n"); } if (rb2.isSelected()) { area2.setText(area2.getText() + "Wants to Join in " + "School of Liberal " + "Arts and Sciences\n"); } if (rb3.isSelected()) { area2.setText(area2.getText() + "Wants to be a " + "Hosteller \n"); } if (rb4.isSelected()) { area2.setText(area2.getText() + "Wants to be a " + "Day Scholar \n"); } area2.setText(area2.getText() + "Had chosen: " + list1.getSelectedValue() .toString() + "\n"); area2.setText(area2.getText() + "Had chosen: " + list2.getSelectedValue() .toString() + "\n"); int index2 = list2.getSelectedIndex(); if (index2 == 0) { area2.setText(area2.getText() + " " + "Total amount to be " + "paid is 4 Lakhs \n"); } if (index2 == 1) { area2.setText(area2.getText() + " " + "Total amount to be paid " + "is 3.9 Lakhs \n"); } if (index2 == 2) { area2.setText(area2.getText() + " " + "Total amount to be paid " + "is 3.8 Lakhs \n"); } if (index2 == 3) { area2.setText(area2.getText() + " " + "Total amount to be paid " + "is 3.7 Lakhs \n"); } if (index2 == 4) { area2.setText(area2.getText() + " " + "Total amount to be paid " + "is 2.9 Lakhs \n"); } if (e.getSource() == Receipt) { try { FileWriter fw = new FileWriter( "java.txt", true); fw.write(area2.getText()); fw.close(); } catch (Exception ae) {

Java projects | Fee management system in java | code | πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’» /* * 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 fees.managment.system; import javax.swing.*; import java.awt.*; import java.awt.Image; import java.awt.event.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.print.*; import javafx.print.Printer; import java.io.*; import java.io.IOException; // Creating the fee class public class fee extends Frame { JLabel l1, l2, l3, l4, l5, l6, l7, l8, l9, l10, l12, l13, l14, l11, l15; JTextField tf1, tf2, tf3, tf4, tf5, tf6, tf7, tf8, tf9, tf10; JTextArea area2, area1; JRadioButton rb1, rb2, rb3, rb4, rb5, rb6, rb7; JFileChooser f1; // Default constructor to // initialize the parameters fee() { l1 = new JLabel("Fee Report"); l1.setBounds(550, 100, 250, 20); l2 = new JLabel( "Name of the Student:"); l2.setBounds(50, 150, 250, 20); tf1 = new JTextField(); tf1.setBounds(250, 150, 250, 20); l3 = new JLabel( "Name of the Father:"); l3.setBounds(50, 200, 250, 20); tf2 = new JTextField(); tf2.setBounds(250, 200, 250, 20); l4 = new JLabel("Roll Number:"); l4.setBounds(50, 250, 250, 20); tf3 = new JTextField(); tf3.setBounds(250, 250, 250, 20); l5 = new JLabel("Email ID:"); l5.setBounds(50, 300, 250, 20); tf4 = new JTextField(); tf4.setBounds(250, 300, 250, 20); l6 = new JLabel("Contact Number:"); l6.setBounds(50, 350, 250, 20); tf5 = new JTextField(); tf5.setBounds(250, 350, 250, 20); l7 = new JLabel("Address:"); l7.setBounds(50, 400, 250, 20); area1 = new JTextArea(); area1.setBounds(250, 400, 250, 90); l9 = new JLabel("Gender:"); l9.setBounds(50, 500, 250, 20); JRadioButton r5 = new JRadioButton(" Male"); JRadioButton r6 = new JRadioButton(" Female"); r5.setBounds(250, 500, 100, 30); r6.setBounds(350, 500, 100, 30); ButtonGroup bg = new ButtonGroup(); bg.add(r5); bg.add(r6); l10 = new JLabel("Nationality:"); l10.setBounds(50, 550, 250, 20); tf6 = new JTextField(); tf6.setBounds(250, 550, 250, 20); l11 = new JLabel( "Year of passing 10th"); l11.setBounds(50, 600, 250, 20); String language[] = { "2016", "2015", "2014" }; final JComboBox cb1 = new JComboBox(language); cb1.setBounds(250, 600, 90, 20); l12 = new JLabel( "Year of passing 12th"); l12.setBounds(50, 650, 250, 20); String languagess[] = { "2019", "2018", "2017" }; l13 = new JLabel( "Points Secured in 10th:"); l13.setBounds(50, 700, 250, 20); tf7 = new JTextField(); tf7.setBounds(250, 700, 250, 20); l14 = new JLabel("Percentage in 12th:"); l14.setBounds(50, 750, 250, 20); tf8 = new JTextField(); tf8.setBounds(250, 750, 250, 20); ImageIcon i2 = new ImageIcon("2.png"); JLabel l15; l15 = new JLabel("", i2, JLabel.CENTER); l15.setBounds(900, 50, 600, 200); final JComboBox cb2 = new JComboBox(languagess); cb2.setBounds(250, 650, 90, 20); l8 = new JLabel( "Groups Offered here are:"); l8.setBounds(800, 150, 250, 20); rb1 = new JRadioButton("SEAS"); rb1.setBounds(550, 150, 100, 30); rb2 = new JRadioButton("SLABS"); rb2.setBounds(650, 150, 100, 30); ButtonGroup bg1 = new ButtonGroup(); bg1.add(rb1); bg1.add(rb2); rb3 = new JRadioButton("HOSTELLER"); rb3.setBounds(550, 200, 100, 30); rb4 = new JRadioButton("DAY SCHOLAR"); rb4.setBounds(650, 200, 120, 30); ButtonGroup bg2 = new ButtonGroup(); bg2.add(rb3); bg2.add(rb4); String languages[] = { "CSE", "ECE", "EEE", "CIVIL", "MECH" }; final JComboBox cb = new JComboBox(languages); cb.setBounds(800, 200, 90, 20); final JLabel label = new JLabel(); label.setBounds(600, 430, 500, 30); JButton b = new JButton("Show"); b.setBounds(1000, 300, 80, 30); final DefaultListModel<String> li1 = new DefaultListModel<>(); li1.addElement("CSE(2, 50, 000)"); li1.addElement("ECE(2, 50, 000)"); li1.addElement("EEE(2, 50, 000)"); li1.addElement("MECH(2, 50, 000)"); li1.addElement("CIVIL(2, 50, 000)"); final JList<String> list1 = new JList<>(li1); list1.setBounds(600, 300, 125, 125); DefaultListModel<String> li2 = new DefaultListModel<>(); li2.addElement( "2

Internship for all students and can earn 7000 rupess, Click fast ,offer for limited time

🎲 Quiz '10 important questions' Cancel πŸ–Š 1 question Β· ⏱ 10 sec

We will provide a java project in this week !

IN which language you want more projects? πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»πŸ’»
Anonymous voting

#Html file |part 1 |projects for class |Animated Name | Html projects <!doctype html> <html> <head> <title>CSS glowing text animation effect</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="glowing"> <span>R</span> <span>i</span> <span>s</span> <span>h</span> <span>a</span> <span>b</span> <span>h</span> </div> </body> </html>

#Css file | Part 2 | Animated Name |#Html project | body { margin: 0; padding: 0; background: #262626; justify-content: center; align-items: center; display: flex; height: 100vh; font-family: Arial; font-weight: bold; } .glowing span { color: #fff; font-size: 1.5em; color: #fff; display: inline-block; animation: animate 2s linear infinite; width: 28px; height: 28px; text-align: center; line-height: 28px; border: 1px solid rgba(255,255,255,.4); margin: 0 -2.5px; } @keyframes animate { 0% { color: #f00; box-shadow: 0 2px 10px rgba(255,0,0,1); border: 1px solid rgba(255,0,0,1); } 33.3% { color: #ff0; box-shadow: 0 2px 10px rgba(255,255,0,1); border: 1px solid rgba(255,255,0,1); } 66.6% { color: #0f0; box-shadow: 0 2px 10px rgba(0,255,0,1); border: 1px solid rgba(0,255,0,1); } 100% { color: #f00; box-shadow: 0 2px 10px rgba(255,0,0,1); border: 1px solid rgba(255,0,0,1); } } .glowing span:nth-child(1) { animation-delay: 0s; } .glowing span:nth-child(2) { animation-delay: 0.1s; } .glowing span:nth-child(3) { animation-delay: 0.2s; } .glowing span:nth-child(4) { animation-delay: 0.3s; } .glowing span:nth-child(5) { animation-delay: 0.4s; } .glowing span:nth-child(6) { animation-delay: 0.5s; } .glowing span:nth-child(7) { animation-delay: 0.6s; }

Output πŸ‘ˆπŸ‘ˆπŸ‘ˆ
Output πŸ‘ˆπŸ‘ˆπŸ‘ˆ

#Real Time Clock 😊😊| #Html |#Css| #Jss πŸ‘‡πŸ‘‡πŸ‘‡πŸΎπŸ‘‡πŸΎπŸ‘‡πŸΎπŸ‘‡πŸΎπŸ‘‡πŸΎπŸ‘‡πŸΎπŸ‘‡πŸΎπŸ‘‡πŸΎπŸ‘‡πŸΎπŸ‘‡πŸΎ Html code <!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Page Title</title> </head> <body> <div class="fix"> <div class="clock"> <div class="hour" id="hour"> <div class="h1"></div> </div> <div class="min" id="min"> <div class="m1"></div> </div> <div class="sec" id="sec"> <div class="s1"></div> </div> </div> </div> </body> </html> Css body { background-color:orange; } .clock{ border:5px solid black; position:absolute; border-radius:200px; width:200px; height:200px; margin-left:78px; align-items:center; display:flex; justify-content:center; background:url("https://www.dropbox.com/s/vc004vma6zr6lyd/IMG_20201003_164720.jpg?dl=1"); background-size:cover; transform:rotate(deg); } .h1,.m1,.s1{ align-items:center; display:flex; justify-content:center; } .h1{ width:50px; border:2px solid red; border-radius:5px; margin-left:0px; margin-top:0px; position:absolute; } .hour{ border:2px solid black; position:absolute; width:5px; height:5px; border-radius:5px; margin-left:-2px; margin-top:0px; } .min{ border:2px solid blue; position:absolute; width:5px; height:5px; border-radius:5px; margin-left:-2px; margin-top:-1.3px; } .m1{ width:60px; border:2px solid blue; border-radius:4px; margin-left:4px; margin-top:1.3px; position:absolute; } .sec{ border:3px solid green; position:absolute; background-color:red; width:5px; height:5px; border-radius:5px; margin-left:-2px; margin-top:-1.3px; } .s1{ width:75px; border:1.9px solid green; background-color:green; border-radius:3px; margin-left:0px; margin-top:1.3px; position:absolute; } .fix{ transform:rotate(-90deg); margin-top:100px; margin-left:-190px; } Jss function rock(){ hour=document.querySelector("#hour"); min=document.querySelector("#min"); sec=document.querySelector("#sec"); setInterval(()=>{ time=new Date() let min1=time.getMinutes()*6; let sec1=time.getSeconds()*6+(time.getMilliseconds()/1000) /60 * 360; let hour1=time.getHours()*30+(min1/12); hour.style.transform=rotateZ(${hour1}deg) min.style.transform=rotateZ(${min1}deg) sec.style.transform=rotateZ(${sec1}deg) }); } rock(); alert("ENJOY ONE OF THE COOLEST REAL LIFE WATCH BY Rishabh saini")

#clock projects in c language ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ #include <stdio.h> #include <conio.h> int main() { int sec = 0, min = 0, hour = 0; printf(" welcome\n"); printf("set hour:"); scanf("%d", &hour); printf("\nset minutes:"); scanf("%d", &min); printf("\nset seconds:"); scanf("%d", &sec); while (sec > 60 || min > 60 || hour > 12) { clrscr(); printf( "\n\n error!!!\n error!!!\n error!!!\n"); return (0); } while (1) { clrscr(); printf("\n %d:%d:%d\n", hour, min, sec); sec++; if (sec == 59) { min += 1; sec = 0; } if (min == 59) { hour += 1; min = 0; sec = 0; } if (hour == 24) { break; } sleep(1); } }

import java.util.*; import java.util.Scanner; public class login { public static void main(String[] args) { Scanner scan= new Scanner(System.in); String name,password; System.out.println("Enter username:"); name = scan.next(); System.out.println("Enter password:"); password = scan.next(); int length = name.length(); if(length <= 6) System.out.println("kailangan ang user name ay 6 character pataas"); else if(!password.equals("Hakdog")) System.out.println("Maling password siguraduhing tama ang password"); else System.out.println("Login Successfull"); } }

import java.util.*; import java.util.Scanner; public class BacicCal { public static void main(String[]args){ Scanner scan=new Scanner(System.in); int first,sec,total; String sc; System.out.println("enter 1st num:"); first=scan.nextInt(); System.out.println("enter 2nd num:"); sec=scan.nextInt(); String []opr={"choose operation","(+)addition","(-)subtraction","(*)multiplication","(/)division"}; for(String i:opr){ System.out.println(i);} sc=scan.next(); if (sc.equals("+")){total=first+sec; System.out.println(first+"+"+sec+"="+total);} else if(sc.equals("-")){total=first-sec; System.out.println(first+"-"+sec+"="+total);} else if(sc.equals("*")){total=first*sec; System.out.println(first+"*"+sec+"="+total);} else if(sc.equals("/")){total=first/sec; System.out.println(first+"/"+sec+"="+total);} else {System.out.println("you entered invalid kerword");} } }

IT --Java Frontend/Backend Developer Location -- Chennai, Bangalore Salary --10.0Lac-20.0Lac(Annually) Experience-- 4 to 9 ye
IT --Java Frontend/Backend Developer Location -- Chennai, Bangalore Salary --10.0Lac-20.0Lac(Annually) Experience-- 4 to 9 year (Core Java Backend Developer) Age - 25-40 year

πŸ‘C projects |Random Number Game | projects

Complete project with source code and map πŸ‘¨β€πŸ’»πŸ‘¨β€πŸ’» Run this code in c++ compiler, Next I will send the code for book management systems

ElectricityBillSystem_complete.txt0.12 KB

project.pdf1.34 KB