├── BMI_Calculator ├── README.md ├── build.xml ├── build │ └── classes │ │ └── bmicalc │ │ ├── Main$1.class │ │ ├── Main$2.class │ │ ├── Main$3.class │ │ ├── Main$4.class │ │ ├── Main.class │ │ └── Main.form ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ └── bmicalc │ ├── Main.form │ └── Main.java ├── Billing_System ├── README.md ├── build.xml ├── build │ └── classes │ │ ├── Billing$1.class │ │ ├── Billing$10.class │ │ ├── Billing$11.class │ │ ├── Billing$12.class │ │ ├── Billing$13.class │ │ ├── Billing$14.class │ │ ├── Billing$15.class │ │ ├── Billing$16.class │ │ ├── Billing$17.class │ │ ├── Billing$18.class │ │ ├── Billing$19.class │ │ ├── Billing$2.class │ │ ├── Billing$20.class │ │ ├── Billing$21.class │ │ ├── Billing$3.class │ │ ├── Billing$4.class │ │ ├── Billing$5.class │ │ ├── Billing$6.class │ │ ├── Billing$7.class │ │ ├── Billing$8.class │ │ ├── Billing$9.class │ │ ├── Billing.class │ │ └── Billing.form ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ ├── Billing.form │ └── Billing.java ├── Calculator ├── Calculator.form ├── Calculator.java ├── README.md └── file ├── Chat Application ├── README.md ├── file └── src │ └── chatapplication │ ├── ChatApp.form │ ├── ChatApp.java │ ├── ChatClient.form │ └── ChatClient.java ├── Currency Converter ├── Cconverter.form ├── Cconverter.java ├── README.md └── file ├── Fee-Management-System ├── README.md ├── build.xml ├── build │ └── classes │ │ ├── fee_management_system │ │ ├── AddStud.class │ │ ├── Conn.class │ │ ├── DeleteStud$1.class │ │ ├── DeleteStud.class │ │ ├── Home.class │ │ ├── Login.class │ │ ├── UpdateStud.class │ │ └── ViewStud.class │ │ └── icon │ │ ├── back.jpg │ │ ├── home.png │ │ └── login.png ├── fee.sql ├── hs_err_pid16612.log ├── hs_err_pid8980.log ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ ├── fee_management_system │ ├── AddStud.java │ ├── Conn.java │ ├── DeleteStud.java │ ├── Home.java │ ├── Login.java │ ├── UpdateStud.java │ └── ViewStud.java │ └── icon │ ├── back.jpg │ ├── home.png │ └── login.png ├── IceCream Shop ├── README.md ├── build │ └── classes │ │ ├── icecreamshop │ │ ├── Shop$1.class │ │ ├── Shop$2.class │ │ ├── Shop.class │ │ └── Shop.form │ │ └── img │ │ └── ice.jpg ├── file ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ ├── icecreamshop │ ├── Shop.form │ └── Shop.java │ └── img │ └── ice.jpg ├── Inventory Control System ├── README.md ├── build.xml ├── build │ └── classes │ │ └── inventory │ │ └── control │ │ └── system │ │ ├── Main$1.class │ │ ├── Main$2.class │ │ ├── Main$3.class │ │ ├── Main$4.class │ │ ├── Main$5.class │ │ ├── Main$6.class │ │ ├── Main.class │ │ └── Main.form ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ └── private.properties │ ├── project.properties │ └── project.xml └── src │ └── inventory │ └── control │ └── system │ ├── Main.form │ └── Main.java ├── Library-Management-System ├── README.md ├── build.xml ├── build │ └── classes │ │ ├── icons │ │ └── back.jpg │ │ └── librarymanagementsys │ │ ├── Author$1.class │ │ ├── Author$2.class │ │ ├── Author$3.class │ │ ├── Author$4.class │ │ ├── Author$5.class │ │ ├── Author$6.class │ │ ├── Author$7.class │ │ ├── Author.class │ │ ├── Author.form │ │ ├── Book$1.class │ │ ├── Book$2.class │ │ ├── Book$3.class │ │ ├── Book$4.class │ │ ├── Book$5.class │ │ ├── Book$6.class │ │ ├── Book$7.class │ │ ├── Book$AuthorItem.class │ │ ├── Book$CategoryItem.class │ │ ├── Book$PublisherItem.class │ │ ├── Book.class │ │ ├── Book.form │ │ ├── Category$1.class │ │ ├── Category$2.class │ │ ├── Category$3.class │ │ ├── Category$4.class │ │ ├── Category$5.class │ │ ├── Category$6.class │ │ ├── Category.class │ │ ├── Category.form │ │ ├── IssueBook$1.class │ │ ├── IssueBook$2.class │ │ ├── IssueBook$3.class │ │ ├── IssueBook$4.class │ │ ├── IssueBook$5.class │ │ ├── IssueBook$6.class │ │ ├── IssueBook$BookItem.class │ │ ├── IssueBook.class │ │ ├── IssueBook.form │ │ ├── Login$1.class │ │ ├── Login$2.class │ │ ├── Login$3.class │ │ ├── Login.class │ │ ├── Login.form │ │ ├── Main$1.class │ │ ├── Main$2.class │ │ ├── Main$3.class │ │ ├── Main$4.class │ │ ├── Main$5.class │ │ ├── Main$6.class │ │ ├── Main$7.class │ │ ├── Main$8.class │ │ ├── Main$9.class │ │ ├── Main.class │ │ ├── Main.form │ │ ├── Member$1.class │ │ ├── Member$2.class │ │ ├── Member$3.class │ │ ├── Member$4.class │ │ ├── Member$5.class │ │ ├── Member$6.class │ │ ├── Member$7.class │ │ ├── Member.class │ │ ├── Member.form │ │ ├── ReturnBook$1.class │ │ ├── ReturnBook$2.class │ │ ├── ReturnBook$3.class │ │ ├── ReturnBook$4.class │ │ ├── ReturnBook$5.class │ │ ├── ReturnBook$6.class │ │ ├── ReturnBook.class │ │ ├── ReturnBook.form │ │ ├── publisher$1.class │ │ ├── publisher$2.class │ │ ├── publisher$3.class │ │ ├── publisher$4.class │ │ ├── publisher$5.class │ │ ├── publisher$6.class │ │ ├── publisher$7.class │ │ ├── publisher.class │ │ └── publisher.form ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ ├── icons │ └── back.jpg │ └── librarymanagementsys │ ├── Author.form │ ├── Author.java │ ├── Book.form │ ├── Book.java │ ├── Category.form │ ├── Category.java │ ├── IssueBook.form │ ├── IssueBook.java │ ├── Login.form │ ├── Login.java │ ├── Main.form │ ├── Main.java │ ├── Member.form │ ├── Member.java │ ├── ReturnBook.form │ ├── ReturnBook.java │ ├── publisher.form │ └── publisher.java ├── Monthly Salary Calculation System ├── README.md ├── build.xml ├── build │ └── classes │ │ ├── EmployeeCalc$1.class │ │ ├── EmployeeCalc$2.class │ │ ├── EmployeeCalc$3.class │ │ ├── EmployeeCalc$4.class │ │ ├── EmployeeCalc.class │ │ └── EmployeeCalc.form ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ ├── EmployeeCalc.form │ └── EmployeeCalc.java ├── Movie-Ticket-Booking ├── README.md ├── build.xml ├── build │ └── classes │ │ └── movieticketbookingsystem │ │ ├── Main$1.class │ │ ├── Main$2.class │ │ ├── Main$3.class │ │ ├── Main$4.class │ │ ├── Main.class │ │ └── Main.form ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ └── private.properties │ ├── project.properties │ └── project.xml ├── project img │ ├── images.png │ └── v-for-vendetta-2005.jpg └── src │ └── movieticketbookingsystem │ ├── Main.form │ └── Main.java ├── Pharmacy Management System ├── README.md ├── build.xml ├── build │ └── classes │ │ └── pharmacymanagementsystem │ │ ├── Conn.class │ │ ├── Main.class │ │ └── icons │ │ └── back.jpg ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ └── pharmacymanagementsystem │ ├── Conn.java │ ├── Main.java │ └── icons │ └── back.jpg ├── Product-Management-System ├── README.md ├── build.xml ├── build │ └── classes │ │ └── product_management_system │ │ ├── AddProduct.class │ │ ├── Conn.class │ │ ├── Login.class │ │ ├── Main.class │ │ ├── UpdateProduct$1.class │ │ ├── UpdateProduct.class │ │ ├── ViewDetail.class │ │ └── icons │ │ ├── back.jpg │ │ └── user.png ├── hs_err_pid21404.log ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ └── product_management_system │ ├── AddProduct.java │ ├── Conn.java │ ├── Login.java │ ├── Main.java │ ├── UpdateProduct.java │ ├── ViewDetail.java │ └── icons │ ├── back.jpg │ └── user.png ├── Quiz-Application-Using-Java ├── README.md ├── build.xml ├── build │ └── classes │ │ ├── icons │ │ ├── 1.jpg │ │ ├── 1.png │ │ ├── quiz.jpg │ │ ├── quizt.png │ │ └── sc.jpg │ │ └── quiz │ │ └── application │ │ ├── Login.class │ │ ├── Quiz.class │ │ ├── Rules_page.class │ │ └── Score.java ├── file ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ ├── icons │ ├── quiz.jpg │ ├── quizt.png │ └── sc.jpg │ └── quiz │ └── application │ ├── Login.java │ ├── Quiz.java │ ├── Rules_page.java │ └── Score.java ├── README.md ├── Restaurant POS ├── README.md ├── build.xml ├── build │ └── classes │ │ ├── pos$1.class │ │ ├── pos$2.class │ │ ├── pos$3.class │ │ ├── pos$4.class │ │ ├── pos$5.class │ │ ├── pos$6.class │ │ ├── pos.class │ │ └── pos.form ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ └── private.properties │ ├── project.properties │ └── project.xml └── src │ ├── pos.form │ └── pos.java ├── Simple Grocery Shop ├── README.md ├── build.xml ├── build │ └── classes │ │ ├── Grocery$1.class │ │ ├── Grocery$2.class │ │ ├── Grocery$3.class │ │ ├── Grocery$4.class │ │ ├── Grocery$5.class │ │ ├── Grocery$6.class │ │ ├── Grocery$7.class │ │ ├── Grocery$8.class │ │ ├── Grocery.class │ │ └── Grocery.form ├── images │ └── img.jpg ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ └── private.properties │ ├── project.properties │ └── project.xml └── src │ ├── Grocery.form │ └── Grocery.java ├── Simple Loan Calculator ├── README.md ├── build.xml ├── build │ └── classes │ │ └── LoanCalculate │ │ ├── loan$1.class │ │ ├── loan$2.class │ │ ├── loan.class │ │ └── loan.form ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ └── LoanCalculate │ ├── loan.form │ └── loan.java ├── Simple_CRUD_Application ├── README.md ├── build.xml ├── build │ └── classes │ │ └── crud_application │ │ ├── AddData.class │ │ ├── AddData.rs │ │ ├── Conn.class │ │ ├── DeleteData$1.class │ │ ├── DeleteData.class │ │ ├── Updatedata.class │ │ └── Viewdata.class ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ └── crud_application │ ├── AddData.java │ ├── Conn.java │ ├── DeleteData.java │ ├── Updatedata.java │ └── Viewdata.java ├── Simple_CRUD_using Table data ├── README.md ├── build.xml ├── build │ └── classes │ │ └── single_page_crud │ │ ├── Main$1.class │ │ ├── Main$2.class │ │ ├── Main$3.class │ │ ├── Main$4.class │ │ ├── Main$5.class │ │ ├── Main.class │ │ └── Main.form ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ └── single_page_crud │ ├── Main.form │ └── Main.java ├── Simple_DB_Product_Add Project ├── README.md ├── build │ └── classes │ │ └── simple_db_project │ │ ├── Conn.class │ │ └── Simple_db_project.class ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ └── simple_db_project │ ├── Conn.java │ └── Simple_db_project.java ├── Student Grading System ├── README.md ├── build.xml ├── build │ └── classes │ │ └── student_grade │ │ ├── StudentGradeSystem$1.class │ │ ├── StudentGradeSystem$10.class │ │ ├── StudentGradeSystem$11.class │ │ ├── StudentGradeSystem$12.class │ │ ├── StudentGradeSystem$2.class │ │ ├── StudentGradeSystem$3.class │ │ ├── StudentGradeSystem$4.class │ │ ├── StudentGradeSystem$5.class │ │ ├── StudentGradeSystem$6.class │ │ ├── StudentGradeSystem$7.class │ │ ├── StudentGradeSystem$8.class │ │ ├── StudentGradeSystem$9.class │ │ ├── StudentGradeSystem.class │ │ └── StudentGradeSystem.form ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ └── student_grade │ ├── StudentGradeSystem.form │ └── StudentGradeSystem.java ├── Temperature Converter ├── Interface.form ├── Interface.java └── README.md ├── Train-Ticket Booking System ├── README.md ├── build.xml ├── build │ └── classes │ │ └── TrainBooking │ │ ├── Addseatpage$1.class │ │ ├── Addseatpage$2.class │ │ ├── Addseatpage$3.class │ │ ├── Addseatpage$4.class │ │ ├── Addseatpage.class │ │ ├── Addseatpage.form │ │ ├── Main$1.class │ │ ├── Main$2.class │ │ ├── Main$3.class │ │ ├── Main.class │ │ ├── Main.form │ │ ├── TrainSeat$1.class │ │ ├── TrainSeat$2.class │ │ ├── TrainSeat$3.class │ │ ├── TrainSeat$4.class │ │ ├── TrainSeat$5.class │ │ ├── TrainSeat$6.class │ │ ├── TrainSeat.class │ │ └── TrainSeat.form ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ └── TrainBooking │ ├── Addseatpage.form │ ├── Addseatpage.java │ ├── Main.form │ ├── Main.java │ ├── TrainSeat.form │ └── TrainSeat.java ├── Vehicle-Registration ├── README.md ├── build.xml ├── build │ └── classes │ │ ├── icons │ │ └── v.png │ │ └── vehiclereg │ │ ├── Addvehicle.class │ │ ├── Conn.class │ │ └── vinfo.class ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ ├── icons │ └── v.png │ └── vehiclereg │ ├── Addvehicle.java │ ├── Conn.java │ └── vinfo.java ├── customer-relationship-manager ├── README.md ├── build.xml ├── build │ └── classes │ │ ├── crm │ │ ├── AddCustomer.class │ │ ├── Conn.class │ │ ├── Delete$1.class │ │ ├── Delete.class │ │ ├── Main.class │ │ ├── ShowCustomer.class │ │ └── Updatedata.class │ │ └── icons │ │ ├── add-user.png │ │ └── crm.png ├── manifest.mf ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── src │ ├── crm │ ├── AddCustomer.java │ ├── Conn.java │ ├── Delete.java │ ├── Main.java │ ├── ShowCustomer.java │ └── Updatedata.java │ └── icons │ ├── add-user.png │ └── crm.png └── student_Management_System ├── README.md ├── build.xml ├── build └── classes │ └── student │ └── management │ └── system │ ├── AddStud.class │ ├── Conn.class │ └── StudDetails.class ├── manifest.mf └── src └── student └── management └── system ├── AddStud.java ├── Conn.java └── StudDetails.java /BMI_Calculator/README.md: -------------------------------------------------------------------------------- 1 | ![bmi](https://github.com/user-attachments/assets/ffd478d8-2e83-4022-903e-c72c3eecd363) 2 | -------------------------------------------------------------------------------- /BMI_Calculator/build/classes/bmicalc/Main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/BMI_Calculator/build/classes/bmicalc/Main$1.class -------------------------------------------------------------------------------- /BMI_Calculator/build/classes/bmicalc/Main$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/BMI_Calculator/build/classes/bmicalc/Main$2.class -------------------------------------------------------------------------------- /BMI_Calculator/build/classes/bmicalc/Main$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/BMI_Calculator/build/classes/bmicalc/Main$3.class -------------------------------------------------------------------------------- /BMI_Calculator/build/classes/bmicalc/Main$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/BMI_Calculator/build/classes/bmicalc/Main$4.class -------------------------------------------------------------------------------- /BMI_Calculator/build/classes/bmicalc/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/BMI_Calculator/build/classes/bmicalc/Main.class -------------------------------------------------------------------------------- /BMI_Calculator/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /BMI_Calculator/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=861ad67f 2 | build.xml.script.CRC32=3639e6c9 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=861ad67f 7 | nbproject/build-impl.xml.script.CRC32=ee1914af 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /BMI_Calculator/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /BMI_Calculator/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /BMI_Calculator/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | annotation.processing.enabled=true 2 | annotation.processing.enabled.in.editor=false 3 | annotation.processing.processor.options= 4 | annotation.processing.processors.list= 5 | annotation.processing.run.all.processors=true 6 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 7 | build.classes.dir=${build.dir}/classes 8 | build.classes.excludes=**/*.java,**/*.form 9 | # This directory is removed when the project is cleaned: 10 | build.dir=build 11 | build.generated.dir=${build.dir}/generated 12 | build.generated.sources.dir=${build.dir}/generated-sources 13 | # Only compile against the classpath explicitly listed here: 14 | build.sysclasspath=ignore 15 | build.test.classes.dir=${build.dir}/test/classes 16 | build.test.results.dir=${build.dir}/test/results 17 | # Uncomment to specify the preferred debugger connection transport: 18 | #debug.transport=dt_socket 19 | debug.classpath=\ 20 | ${run.classpath} 21 | debug.modulepath=\ 22 | ${run.modulepath} 23 | debug.test.classpath=\ 24 | ${run.test.classpath} 25 | debug.test.modulepath=\ 26 | ${run.test.modulepath} 27 | # Files in build.classes.dir which should be excluded from distribution jar 28 | dist.archive.excludes= 29 | # This directory is removed when the project is cleaned: 30 | dist.dir=dist 31 | dist.jar=${dist.dir}/BMIcalc.jar 32 | dist.javadoc.dir=${dist.dir}/javadoc 33 | dist.jlink.dir=${dist.dir}/jlink 34 | dist.jlink.output=${dist.jlink.dir}/BMIcalc 35 | excludes= 36 | includes=** 37 | jar.compress=false 38 | javac.classpath= 39 | # Space-separated list of extra javac options 40 | javac.compilerargs= 41 | javac.deprecation=false 42 | javac.external.vm=true 43 | javac.modulepath= 44 | javac.processormodulepath= 45 | javac.processorpath=\ 46 | ${javac.classpath} 47 | javac.source=22 48 | javac.target=22 49 | javac.test.classpath=\ 50 | ${javac.classpath}:\ 51 | ${build.classes.dir} 52 | javac.test.modulepath=\ 53 | ${javac.modulepath} 54 | javac.test.processorpath=\ 55 | ${javac.test.classpath} 56 | javadoc.additionalparam= 57 | javadoc.author=false 58 | javadoc.encoding=${source.encoding} 59 | javadoc.html5=false 60 | javadoc.noindex=false 61 | javadoc.nonavbar=false 62 | javadoc.notree=false 63 | javadoc.private=false 64 | javadoc.splitindex=true 65 | javadoc.use=true 66 | javadoc.version=false 67 | javadoc.windowtitle= 68 | # The jlink additional root modules to resolve 69 | jlink.additionalmodules= 70 | # The jlink additional command line parameters 71 | jlink.additionalparam= 72 | jlink.launcher=true 73 | jlink.launcher.name=BMIcalc 74 | main.class=bmicalc.BMIcalc 75 | manifest.file=manifest.mf 76 | meta.inf.dir=${src.dir}/META-INF 77 | mkdist.disabled=false 78 | platform.active=default_platform 79 | run.classpath=\ 80 | ${javac.classpath}:\ 81 | ${build.classes.dir} 82 | # Space-separated list of JVM arguments used when running the project. 83 | # You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. 84 | # To set system properties for unit tests define test-sys-prop.name=value: 85 | run.jvmargs= 86 | run.modulepath=\ 87 | ${javac.modulepath} 88 | run.test.classpath=\ 89 | ${javac.test.classpath}:\ 90 | ${build.test.classes.dir} 91 | run.test.modulepath=\ 92 | ${javac.test.modulepath} 93 | source.encoding=UTF-8 94 | src.dir=src 95 | test.src.dir=test 96 | -------------------------------------------------------------------------------- /BMI_Calculator/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | BMIcalc 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Billing_System/README.md: -------------------------------------------------------------------------------- 1 | # Billing-System 2 | 3 | ![bill](https://github.com/user-attachments/assets/f0f8901d-2f33-4da7-8e54-1cfeaa914d44) 4 | -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$1.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$10.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$11.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$12.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$12.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$13.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$13.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$14.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$14.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$15.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$15.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$16.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$16.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$17.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$17.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$18.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$18.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$19.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$19.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$2.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$20.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$20.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$21.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$21.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$3.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$4.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$5.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$6.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$7.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$8.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing$9.class -------------------------------------------------------------------------------- /Billing_System/build/classes/Billing.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Billing_System/build/classes/Billing.class -------------------------------------------------------------------------------- /Billing_System/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Billing_System/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=2cd234aa 2 | build.xml.script.CRC32=a310fafb 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=2cd234aa 7 | nbproject/build-impl.xml.script.CRC32=aa5ab498 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Billing_System/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Billing_System/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/Billing%20Project/src/Billing.java 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Billing_System/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | Billing Project 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Calculator/README.md: -------------------------------------------------------------------------------- 1 | # Calculator 2 | 3 | ![calci](https://github.com/user-attachments/assets/ca0a3ce5-3104-444d-9d71-01e650bc3642) 4 | -------------------------------------------------------------------------------- /Calculator/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chat Application/README.md: -------------------------------------------------------------------------------- 1 | # Chat Application 2 | 3 | A Chatting App made in Java using concept of Socket Programming that allows communication between a Server and Client. The app has an easy to use User Interface which has been created using Java Swing. 4 | 5 | ![ser1](https://github.com/user-attachments/assets/10215917-c03f-47ac-b4c8-627632f08bb7) ![cl1](https://github.com/user-attachments/assets/e0d910b9-6fff-4d77-bf66-00b9d2d299cf) 6 | 7 | 8 | 9 | ![ser2](https://github.com/user-attachments/assets/c2649f5d-d5ea-484d-bf17-2890561db37f) ![cl2](https://github.com/user-attachments/assets/94e05522-ceb2-4ea7-94ee-2eba3949ac77) 10 | 11 | ## How to run? 12 | 13 | Open two seperate terminal/command-prompt windows and then from project directory: 14 | 15 | 16 | 17 | 1- java Server (On one window) 18 | 19 | 2- java Client (On other window) 20 | 21 | 22 | Now you can type messages in either the Client or Server window and press the "Send" button to send the message. 23 | 24 | Note- Server should be started before running the Client. 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Chat Application/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Currency Converter/README.md: -------------------------------------------------------------------------------- 1 | # Currency Converter 2 | 3 | 4 | ![conv](https://github.com/user-attachments/assets/88fdaf89-825d-45b2-a89f-6019886d968f) 5 | 6 | 7 | ![convo2](https://github.com/user-attachments/assets/5dbe2d30-dde6-4c3f-8426-46d3f82a50cb) 8 | -------------------------------------------------------------------------------- /Currency Converter/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Fee-Management-System/README.md: -------------------------------------------------------------------------------- 1 | # Fee-Management-System 2 | 3 | ![fee1](https://github.com/user-attachments/assets/0598ff23-2a25-4067-845f-7a09cb7e204c) 4 | 5 | ![fee2](https://github.com/user-attachments/assets/0b0d50ee-fac9-487d-9de8-3aad874a84a0) 6 | 7 | ![fadd](https://github.com/user-attachments/assets/043728cc-c12b-4618-848c-ab2eab361d92) 8 | 9 | ![fview](https://github.com/user-attachments/assets/ce43b5a0-f5ae-468b-84dc-f2903655b9f8) 10 | 11 | ![fupdate](https://github.com/user-attachments/assets/74059086-52c6-46ab-9ce2-ea49cc38d34d) 12 | 13 | ![dfee](https://github.com/user-attachments/assets/a7509510-e6ab-4a03-af21-52e876549c1b) 14 | 15 | -------------------------------------------------------------------------------- /Fee-Management-System/build/classes/fee_management_system/AddStud.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/build/classes/fee_management_system/AddStud.class -------------------------------------------------------------------------------- /Fee-Management-System/build/classes/fee_management_system/Conn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/build/classes/fee_management_system/Conn.class -------------------------------------------------------------------------------- /Fee-Management-System/build/classes/fee_management_system/DeleteStud$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/build/classes/fee_management_system/DeleteStud$1.class -------------------------------------------------------------------------------- /Fee-Management-System/build/classes/fee_management_system/DeleteStud.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/build/classes/fee_management_system/DeleteStud.class -------------------------------------------------------------------------------- /Fee-Management-System/build/classes/fee_management_system/Home.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/build/classes/fee_management_system/Home.class -------------------------------------------------------------------------------- /Fee-Management-System/build/classes/fee_management_system/Login.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/build/classes/fee_management_system/Login.class -------------------------------------------------------------------------------- /Fee-Management-System/build/classes/fee_management_system/UpdateStud.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/build/classes/fee_management_system/UpdateStud.class -------------------------------------------------------------------------------- /Fee-Management-System/build/classes/fee_management_system/ViewStud.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/build/classes/fee_management_system/ViewStud.class -------------------------------------------------------------------------------- /Fee-Management-System/build/classes/icon/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/build/classes/icon/back.jpg -------------------------------------------------------------------------------- /Fee-Management-System/build/classes/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/build/classes/icon/home.png -------------------------------------------------------------------------------- /Fee-Management-System/build/classes/icon/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/build/classes/icon/login.png -------------------------------------------------------------------------------- /Fee-Management-System/fee.sql: -------------------------------------------------------------------------------- 1 | create database feemanagementsystem; 2 | 3 | show databases; 4 | 5 | use feemanagementsystem; 6 | 7 | create table login(username varchar(20), password varchar(20)); 8 | 9 | insert into login values("admin", "12345"); 10 | 11 | select * from login; 12 | 13 | create table studentd(name varchar(20), email varchar(40), dob varchar(30), course varchar(20), fee varchar(20),paid varchar(20), phone varchar(20), address varchar(100), country varchar(20), studid varchar(20)); 14 | 15 | select * from studentd; -------------------------------------------------------------------------------- /Fee-Management-System/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Fee-Management-System/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=7b190c31 2 | build.xml.script.CRC32=99bdcc60 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=7b190c31 7 | nbproject/build-impl.xml.script.CRC32=f7f87f56 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Fee-Management-System/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Fee-Management-System/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/Fee_Management_System/src/fee_management_system/ViewStud.java 7 | file:/C:/Users/hp/Documents/NetBeansProjects/Fee_Management_System/src/fee_management_system/UpdateStud.java 8 | file:/C:/Users/hp/Documents/NetBeansProjects/Fee_Management_System/src/fee_management_system/DeleteStud.java 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Fee-Management-System/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | Fee_Management_System 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Fee-Management-System/src/fee_management_system/Conn.java: -------------------------------------------------------------------------------- 1 | package fee_management_system; 2 | 3 | import java.sql.*; 4 | 5 | public class Conn { 6 | 7 | Connection c; 8 | Statement s; 9 | 10 | public Conn () { 11 | try { 12 | Class.forName("com.mysql.cj.jdbc.Driver"); 13 | c = DriverManager.getConnection("jdbc:mysql:///feemanagementsystem", "root", "SS30@krhps"); 14 | s = c.createStatement(); 15 | } catch (Exception e) { 16 | e.printStackTrace(); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Fee-Management-System/src/fee_management_system/Home.java: -------------------------------------------------------------------------------- 1 | package fee_management_system; 2 | 3 | import java.awt.Color; 4 | import java.awt.Font; 5 | import java.awt.Image; 6 | import java.awt.event.ActionEvent; 7 | import java.awt.event.ActionListener; 8 | import javax.swing.ImageIcon; 9 | import javax.swing.JButton; 10 | import javax.swing.JFrame; 11 | import javax.swing.JLabel; 12 | 13 | public class Home extends JFrame implements ActionListener{ 14 | 15 | JButton add, view,update,delete,logout; 16 | Home() { 17 | 18 | setLayout(null); 19 | 20 | ImageIcon i1 = new ImageIcon(ClassLoader.getSystemResource("icon/home.png")); 21 | Image i2 = i1.getImage().getScaledInstance(800, 400, Image.SCALE_DEFAULT); 22 | ImageIcon i3 = new ImageIcon(i2); 23 | JLabel image = new JLabel(i3); 24 | image.setBounds(0, 0, 800, 400); 25 | add(image); 26 | 27 | JLabel heading = new JLabel("Fee Management System"); 28 | heading.setBounds(250,20,350,40); 29 | heading.setFont(new Font("TAHOMA", Font.BOLD,25)); 30 | heading.setForeground(Color.WHITE); 31 | image.add(heading); 32 | 33 | 34 | 35 | add = new JButton("Add Student"); 36 | add.setBounds(200,80,150,40); 37 | add.addActionListener(this); 38 | image.add(add); 39 | 40 | view = new JButton("View Students"); 41 | view.setBounds(450,80,150,40); 42 | view.addActionListener(this); 43 | image.add(view); 44 | 45 | update = new JButton("Update Student"); 46 | update.setBounds(200,150,150,40); 47 | update.addActionListener(this); 48 | image.add(update); 49 | 50 | delete = new JButton("Delete Student"); 51 | delete.setBounds(450,150,150,40); 52 | delete.addActionListener(this); 53 | image.add(delete); 54 | 55 | logout = new JButton("LogOut"); 56 | logout.setBounds(320,230,150,40); 57 | logout.addActionListener(this); 58 | image.add(logout); 59 | 60 | setSize(800, 400); 61 | setLocation(400, 200); 62 | setVisible(true); 63 | } 64 | 65 | public void actionPerformed(ActionEvent ae){ 66 | if(ae.getSource() == add){ 67 | setVisible(false); 68 | new AddStud(); 69 | 70 | }else if(ae.getSource()== view){ 71 | setVisible(false); 72 | new ViewStud(); 73 | }else if(ae.getSource() == update){ 74 | setVisible(false); 75 | new ViewStud(); 76 | 77 | }else if(ae.getSource() == delete){ 78 | setVisible(false); 79 | new DeleteStud(); 80 | }else if(ae.getSource() == logout){ 81 | setVisible(false); 82 | } 83 | } 84 | 85 | public static void main(String[] args) { 86 | new Home(); 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /Fee-Management-System/src/fee_management_system/Login.java: -------------------------------------------------------------------------------- 1 | package fee_management_system; 2 | 3 | import javax.swing.*; 4 | import java.awt.*; 5 | import java.awt.event.*; 6 | import java.sql.*; 7 | 8 | public class Login extends JFrame implements ActionListener{ 9 | 10 | JTextField tfusername, tfpassword; 11 | 12 | Login() { 13 | 14 | getContentPane().setBackground(Color.WHITE); 15 | setLayout(null); 16 | 17 | 18 | JLabel lblusername = new JLabel("Username"); 19 | lblusername.setBounds(40, 20, 100, 30); 20 | add(lblusername); 21 | 22 | tfusername = new JTextField(); 23 | tfusername.setBounds(150, 20, 150, 30); 24 | add(tfusername); 25 | 26 | JLabel lblpassword = new JLabel("Password"); 27 | lblpassword.setBounds(40, 70, 100, 30); 28 | add(lblpassword); 29 | 30 | tfpassword = new JTextField(); 31 | tfpassword.setBounds(150, 70, 150, 30); 32 | add(tfpassword); 33 | 34 | JButton login = new JButton("LOGIN"); 35 | login.setBounds(150, 140, 150, 30); 36 | login.setBackground(Color.BLACK); 37 | login.setForeground(Color.WHITE); 38 | login.addActionListener(this); 39 | add(login); 40 | 41 | ImageIcon i1 = new ImageIcon(ClassLoader.getSystemResource("icon/login.png")); 42 | Image i2 = i1.getImage().getScaledInstance(200, 200, Image.SCALE_DEFAULT); 43 | ImageIcon i3 = new ImageIcon(i2); 44 | JLabel image = new JLabel(i3); 45 | image.setBounds(350, 0, 200, 200); 46 | add(image); 47 | 48 | setSize(600, 300); 49 | setLocation(450, 200); 50 | setVisible(true); 51 | } 52 | 53 | public void actionPerformed(ActionEvent ae) { 54 | try { 55 | String username = tfusername.getText(); 56 | String password = tfpassword.getText(); 57 | 58 | Conn c = new Conn(); 59 | String query = "select * from login where username = '"+username+"' and password = '"+password+"'"; 60 | 61 | ResultSet rs = c.s.executeQuery(query); 62 | if (rs.next()) { 63 | setVisible(false); 64 | new Home(); 65 | } else { 66 | JOptionPane.showMessageDialog(null, "Invalid username or password"); 67 | setVisible(false); 68 | } 69 | } catch (Exception e) { 70 | e.printStackTrace(); 71 | } 72 | } 73 | 74 | public static void main(String[] args) { 75 | new Login(); 76 | } 77 | } -------------------------------------------------------------------------------- /Fee-Management-System/src/icon/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/src/icon/back.jpg -------------------------------------------------------------------------------- /Fee-Management-System/src/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/src/icon/home.png -------------------------------------------------------------------------------- /Fee-Management-System/src/icon/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Fee-Management-System/src/icon/login.png -------------------------------------------------------------------------------- /IceCream Shop/README.md: -------------------------------------------------------------------------------- 1 | # ICECREAM Shop 2 | 3 | ![ishop2](https://github.com/user-attachments/assets/8df547e2-6f05-482b-9310-fb7866c0b281) 4 | 5 | ![ishop1](https://github.com/user-attachments/assets/99ba511c-0060-4a9a-8920-35874ff6de3f) 6 | 7 | -------------------------------------------------------------------------------- /IceCream Shop/build/classes/icecreamshop/Shop$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/IceCream Shop/build/classes/icecreamshop/Shop$1.class -------------------------------------------------------------------------------- /IceCream Shop/build/classes/icecreamshop/Shop$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/IceCream Shop/build/classes/icecreamshop/Shop$2.class -------------------------------------------------------------------------------- /IceCream Shop/build/classes/icecreamshop/Shop.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/IceCream Shop/build/classes/icecreamshop/Shop.class -------------------------------------------------------------------------------- /IceCream Shop/build/classes/img/ice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/IceCream Shop/build/classes/img/ice.jpg -------------------------------------------------------------------------------- /IceCream Shop/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /IceCream Shop/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /IceCream Shop/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=4bd372b6 2 | build.xml.script.CRC32=045dcbe5 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=4bd372b6 7 | nbproject/build-impl.xml.script.CRC32=cdbc9cb4 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /IceCream Shop/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /IceCream Shop/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/IcecreamShop/src/icecreamshop/Shop.java 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /IceCream Shop/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | annotation.processing.enabled=true 2 | annotation.processing.enabled.in.editor=false 3 | annotation.processing.processor.options= 4 | annotation.processing.processors.list= 5 | annotation.processing.run.all.processors=true 6 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 7 | build.classes.dir=${build.dir}/classes 8 | build.classes.excludes=**/*.java,**/*.form 9 | # This directory is removed when the project is cleaned: 10 | build.dir=build 11 | build.generated.dir=${build.dir}/generated 12 | build.generated.sources.dir=${build.dir}/generated-sources 13 | # Only compile against the classpath explicitly listed here: 14 | build.sysclasspath=ignore 15 | build.test.classes.dir=${build.dir}/test/classes 16 | build.test.results.dir=${build.dir}/test/results 17 | # Uncomment to specify the preferred debugger connection transport: 18 | #debug.transport=dt_socket 19 | debug.classpath=\ 20 | ${run.classpath} 21 | debug.modulepath=\ 22 | ${run.modulepath} 23 | debug.test.classpath=\ 24 | ${run.test.classpath} 25 | debug.test.modulepath=\ 26 | ${run.test.modulepath} 27 | # Files in build.classes.dir which should be excluded from distribution jar 28 | dist.archive.excludes= 29 | # This directory is removed when the project is cleaned: 30 | dist.dir=dist 31 | dist.jar=${dist.dir}/IcecreamShop.jar 32 | dist.javadoc.dir=${dist.dir}/javadoc 33 | dist.jlink.dir=${dist.dir}/jlink 34 | dist.jlink.output=${dist.jlink.dir}/IcecreamShop 35 | excludes= 36 | includes=** 37 | jar.compress=false 38 | javac.classpath= 39 | # Space-separated list of extra javac options 40 | javac.compilerargs= 41 | javac.deprecation=false 42 | javac.external.vm=true 43 | javac.modulepath= 44 | javac.processormodulepath= 45 | javac.processorpath=\ 46 | ${javac.classpath} 47 | javac.source=22 48 | javac.target=22 49 | javac.test.classpath=\ 50 | ${javac.classpath}:\ 51 | ${build.classes.dir} 52 | javac.test.modulepath=\ 53 | ${javac.modulepath} 54 | javac.test.processorpath=\ 55 | ${javac.test.classpath} 56 | javadoc.additionalparam= 57 | javadoc.author=false 58 | javadoc.encoding=${source.encoding} 59 | javadoc.html5=false 60 | javadoc.noindex=false 61 | javadoc.nonavbar=false 62 | javadoc.notree=false 63 | javadoc.private=false 64 | javadoc.splitindex=true 65 | javadoc.use=true 66 | javadoc.version=false 67 | javadoc.windowtitle= 68 | # The jlink additional root modules to resolve 69 | jlink.additionalmodules= 70 | # The jlink additional command line parameters 71 | jlink.additionalparam= 72 | jlink.launcher=true 73 | jlink.launcher.name=IcecreamShop 74 | main.class=icecreamshop.IcecreamShop 75 | manifest.file=manifest.mf 76 | meta.inf.dir=${src.dir}/META-INF 77 | mkdist.disabled=false 78 | platform.active=default_platform 79 | run.classpath=\ 80 | ${javac.classpath}:\ 81 | ${build.classes.dir} 82 | # Space-separated list of JVM arguments used when running the project. 83 | # You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. 84 | # To set system properties for unit tests define test-sys-prop.name=value: 85 | run.jvmargs= 86 | run.modulepath=\ 87 | ${javac.modulepath} 88 | run.test.classpath=\ 89 | ${javac.test.classpath}:\ 90 | ${build.test.classes.dir} 91 | run.test.modulepath=\ 92 | ${javac.test.modulepath} 93 | source.encoding=UTF-8 94 | src.dir=src 95 | test.src.dir=test 96 | -------------------------------------------------------------------------------- /IceCream Shop/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | IcecreamShop 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /IceCream Shop/src/img/ice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/IceCream Shop/src/img/ice.jpg -------------------------------------------------------------------------------- /Inventory Control System/README.md: -------------------------------------------------------------------------------- 1 | 2 | ![invent](https://github.com/user-attachments/assets/d63e86ef-e2eb-4536-8be1-e2f5d9992e91) 3 | -------------------------------------------------------------------------------- /Inventory Control System/build/classes/inventory/control/system/Main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Inventory Control System/build/classes/inventory/control/system/Main$1.class -------------------------------------------------------------------------------- /Inventory Control System/build/classes/inventory/control/system/Main$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Inventory Control System/build/classes/inventory/control/system/Main$2.class -------------------------------------------------------------------------------- /Inventory Control System/build/classes/inventory/control/system/Main$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Inventory Control System/build/classes/inventory/control/system/Main$3.class -------------------------------------------------------------------------------- /Inventory Control System/build/classes/inventory/control/system/Main$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Inventory Control System/build/classes/inventory/control/system/Main$4.class -------------------------------------------------------------------------------- /Inventory Control System/build/classes/inventory/control/system/Main$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Inventory Control System/build/classes/inventory/control/system/Main$5.class -------------------------------------------------------------------------------- /Inventory Control System/build/classes/inventory/control/system/Main$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Inventory Control System/build/classes/inventory/control/system/Main$6.class -------------------------------------------------------------------------------- /Inventory Control System/build/classes/inventory/control/system/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Inventory Control System/build/classes/inventory/control/system/Main.class -------------------------------------------------------------------------------- /Inventory Control System/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Inventory Control System/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=ebf89135 2 | build.xml.script.CRC32=f6eed1ed 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=ebf89135 7 | nbproject/build-impl.xml.script.CRC32=b15f1fa6 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Inventory Control System/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Inventory Control System/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | Inventory control system 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Library-Management-System/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Library-Management-System/build/classes/icons/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/icons/back.jpg -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Author$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Author$1.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Author$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Author$2.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Author$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Author$3.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Author$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Author$4.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Author$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Author$5.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Author$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Author$6.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Author$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Author$7.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Author.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Author.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Book$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Book$1.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Book$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Book$2.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Book$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Book$3.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Book$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Book$4.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Book$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Book$5.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Book$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Book$6.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Book$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Book$7.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Book$AuthorItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Book$AuthorItem.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Book$CategoryItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Book$CategoryItem.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Book$PublisherItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Book$PublisherItem.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Book.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Book.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Category$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Category$1.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Category$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Category$2.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Category$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Category$3.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Category$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Category$4.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Category$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Category$5.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Category$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Category$6.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Category.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Category.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/IssueBook$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/IssueBook$1.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/IssueBook$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/IssueBook$2.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/IssueBook$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/IssueBook$3.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/IssueBook$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/IssueBook$4.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/IssueBook$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/IssueBook$5.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/IssueBook$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/IssueBook$6.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/IssueBook$BookItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/IssueBook$BookItem.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/IssueBook.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/IssueBook.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Login$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Login$1.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Login$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Login$2.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Login$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Login$3.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Login.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Login.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Main$1.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Main$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Main$2.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Main$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Main$3.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Main$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Main$4.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Main$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Main$5.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Main$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Main$6.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Main$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Main$7.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Main$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Main$8.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Main$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Main$9.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Main.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Member$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Member$1.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Member$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Member$2.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Member$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Member$3.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Member$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Member$4.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Member$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Member$5.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Member$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Member$6.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Member$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Member$7.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/Member.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/Member.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/ReturnBook$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/ReturnBook$1.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/ReturnBook$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/ReturnBook$2.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/ReturnBook$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/ReturnBook$3.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/ReturnBook$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/ReturnBook$4.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/ReturnBook$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/ReturnBook$5.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/ReturnBook$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/ReturnBook$6.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/ReturnBook.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/ReturnBook.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/publisher$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/publisher$1.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/publisher$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/publisher$2.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/publisher$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/publisher$3.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/publisher$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/publisher$4.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/publisher$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/publisher$5.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/publisher$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/publisher$6.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/publisher$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/publisher$7.class -------------------------------------------------------------------------------- /Library-Management-System/build/classes/librarymanagementsys/publisher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/build/classes/librarymanagementsys/publisher.class -------------------------------------------------------------------------------- /Library-Management-System/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Library-Management-System/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=27414bca 2 | build.xml.script.CRC32=ef1af3ab 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=27414bca 7 | nbproject/build-impl.xml.script.CRC32=d79c3dfc 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Library-Management-System/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Library-Management-System/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/librarymanagementsys/src/librarymanagementsys/ReturnBook.java 7 | file:/C:/Users/hp/Documents/NetBeansProjects/librarymanagementsys/src/librarymanagementsys/IssueBook.java 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Library-Management-System/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | librarymanagementsys 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Library-Management-System/src/icons/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Library-Management-System/src/icons/back.jpg -------------------------------------------------------------------------------- /Monthly Salary Calculation System/README.md: -------------------------------------------------------------------------------- 1 | # Monthly Salary Calculation System 2 | 3 | ![salcalc](https://github.com/user-attachments/assets/f4e2a446-5f02-4b8c-abe4-740ca59c4194) 4 | 5 | 6 | ## Allowance 7 | ``` 8 | if(chketf.isSelected() == true){ 9 | etfamnt = salary * 10/100; 10 | }if (chkepf.isSelected() == true){ 11 | epfamnt = salary * 5/100; 12 | } 13 | ``` 14 | 15 | -------------------------------------------------------------------------------- /Monthly Salary Calculation System/build/classes/EmployeeCalc$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Monthly Salary Calculation System/build/classes/EmployeeCalc$1.class -------------------------------------------------------------------------------- /Monthly Salary Calculation System/build/classes/EmployeeCalc$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Monthly Salary Calculation System/build/classes/EmployeeCalc$2.class -------------------------------------------------------------------------------- /Monthly Salary Calculation System/build/classes/EmployeeCalc$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Monthly Salary Calculation System/build/classes/EmployeeCalc$3.class -------------------------------------------------------------------------------- /Monthly Salary Calculation System/build/classes/EmployeeCalc$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Monthly Salary Calculation System/build/classes/EmployeeCalc$4.class -------------------------------------------------------------------------------- /Monthly Salary Calculation System/build/classes/EmployeeCalc.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Monthly Salary Calculation System/build/classes/EmployeeCalc.class -------------------------------------------------------------------------------- /Monthly Salary Calculation System/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Monthly Salary Calculation System/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=593a04eb 2 | build.xml.script.CRC32=2082bf51 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=593a04eb 7 | nbproject/build-impl.xml.script.CRC32=28de4fbf 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Monthly Salary Calculation System/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Monthly Salary Calculation System/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/EmployeeSalaryCalc/src/EmployeeCalc.java 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Monthly Salary Calculation System/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | annotation.processing.enabled=true 2 | annotation.processing.enabled.in.editor=false 3 | annotation.processing.processor.options= 4 | annotation.processing.processors.list= 5 | annotation.processing.run.all.processors=true 6 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 7 | build.classes.dir=${build.dir}/classes 8 | build.classes.excludes=**/*.java,**/*.form 9 | # This directory is removed when the project is cleaned: 10 | build.dir=build 11 | build.generated.dir=${build.dir}/generated 12 | build.generated.sources.dir=${build.dir}/generated-sources 13 | # Only compile against the classpath explicitly listed here: 14 | build.sysclasspath=ignore 15 | build.test.classes.dir=${build.dir}/test/classes 16 | build.test.results.dir=${build.dir}/test/results 17 | # Uncomment to specify the preferred debugger connection transport: 18 | #debug.transport=dt_socket 19 | debug.classpath=\ 20 | ${run.classpath} 21 | debug.modulepath=\ 22 | ${run.modulepath} 23 | debug.test.classpath=\ 24 | ${run.test.classpath} 25 | debug.test.modulepath=\ 26 | ${run.test.modulepath} 27 | # Files in build.classes.dir which should be excluded from distribution jar 28 | dist.archive.excludes= 29 | # This directory is removed when the project is cleaned: 30 | dist.dir=dist 31 | dist.jar=${dist.dir}/EmployeeSalaryCalc.jar 32 | dist.javadoc.dir=${dist.dir}/javadoc 33 | dist.jlink.dir=${dist.dir}/jlink 34 | dist.jlink.output=${dist.jlink.dir}/EmployeeSalaryCalc 35 | excludes= 36 | includes=** 37 | jar.compress=false 38 | javac.classpath= 39 | # Space-separated list of extra javac options 40 | javac.compilerargs= 41 | javac.deprecation=false 42 | javac.external.vm=true 43 | javac.modulepath= 44 | javac.processormodulepath= 45 | javac.processorpath=\ 46 | ${javac.classpath} 47 | javac.source=22 48 | javac.target=22 49 | javac.test.classpath=\ 50 | ${javac.classpath}:\ 51 | ${build.classes.dir} 52 | javac.test.modulepath=\ 53 | ${javac.modulepath} 54 | javac.test.processorpath=\ 55 | ${javac.test.classpath} 56 | javadoc.additionalparam= 57 | javadoc.author=false 58 | javadoc.encoding=${source.encoding} 59 | javadoc.html5=false 60 | javadoc.noindex=false 61 | javadoc.nonavbar=false 62 | javadoc.notree=false 63 | javadoc.private=false 64 | javadoc.splitindex=true 65 | javadoc.use=true 66 | javadoc.version=false 67 | javadoc.windowtitle= 68 | # The jlink additional root modules to resolve 69 | jlink.additionalmodules= 70 | # The jlink additional command line parameters 71 | jlink.additionalparam= 72 | jlink.launcher=true 73 | jlink.launcher.name=EmployeeSalaryCalc 74 | main.class= 75 | manifest.file=manifest.mf 76 | meta.inf.dir=${src.dir}/META-INF 77 | mkdist.disabled=false 78 | platform.active=default_platform 79 | run.classpath=\ 80 | ${javac.classpath}:\ 81 | ${build.classes.dir} 82 | # Space-separated list of JVM arguments used when running the project. 83 | # You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. 84 | # To set system properties for unit tests define test-sys-prop.name=value: 85 | run.jvmargs= 86 | run.modulepath=\ 87 | ${javac.modulepath} 88 | run.test.classpath=\ 89 | ${javac.test.classpath}:\ 90 | ${build.test.classes.dir} 91 | run.test.modulepath=\ 92 | ${javac.test.modulepath} 93 | source.encoding=UTF-8 94 | src.dir=src 95 | test.src.dir=test 96 | -------------------------------------------------------------------------------- /Monthly Salary Calculation System/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | EmployeeSalaryCalc 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Movie-Ticket-Booking/README.md: -------------------------------------------------------------------------------- 1 | ![bookmovieticket](https://github.com/user-attachments/assets/8c0fadb4-c5de-4831-9421-0ca2f20240eb) 2 | -------------------------------------------------------------------------------- /Movie-Ticket-Booking/build/classes/movieticketbookingsystem/Main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Movie-Ticket-Booking/build/classes/movieticketbookingsystem/Main$1.class -------------------------------------------------------------------------------- /Movie-Ticket-Booking/build/classes/movieticketbookingsystem/Main$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Movie-Ticket-Booking/build/classes/movieticketbookingsystem/Main$2.class -------------------------------------------------------------------------------- /Movie-Ticket-Booking/build/classes/movieticketbookingsystem/Main$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Movie-Ticket-Booking/build/classes/movieticketbookingsystem/Main$3.class -------------------------------------------------------------------------------- /Movie-Ticket-Booking/build/classes/movieticketbookingsystem/Main$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Movie-Ticket-Booking/build/classes/movieticketbookingsystem/Main$4.class -------------------------------------------------------------------------------- /Movie-Ticket-Booking/build/classes/movieticketbookingsystem/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Movie-Ticket-Booking/build/classes/movieticketbookingsystem/Main.class -------------------------------------------------------------------------------- /Movie-Ticket-Booking/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Movie-Ticket-Booking/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=a11132e6 2 | build.xml.script.CRC32=988282fa 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=a11132e6 7 | nbproject/build-impl.xml.script.CRC32=04fad29c 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Movie-Ticket-Booking/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Movie-Ticket-Booking/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | MovieTicketBookingSystem 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Movie-Ticket-Booking/project img/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Movie-Ticket-Booking/project img/images.png -------------------------------------------------------------------------------- /Movie-Ticket-Booking/project img/v-for-vendetta-2005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Movie-Ticket-Booking/project img/v-for-vendetta-2005.jpg -------------------------------------------------------------------------------- /Pharmacy Management System/README.md: -------------------------------------------------------------------------------- 1 | ## Database 2 | 3 | ```perl 4 | create database pharmacymanagementsystem; 5 | 6 | show databases; 7 | 8 | use pharmacymanagementsystem; 9 | 10 | create table drug(compname varchar(40), refno varchar(30), dose varchar(40), noftab varchar(30), issue varchar(30) ,dailydose varchar(40) , advice varchar(30), costp varchar(30), sellp varchar(30), exp varchar(30)); 11 | 12 | select * from drug; 13 | ``` 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | ![pahrmacy1](https://github.com/user-attachments/assets/16566f22-089d-4ed0-b5b7-1586b8003749) 25 | 26 | 27 | 28 | ![pharmacy2](https://github.com/user-attachments/assets/dd9153e6-6d9b-4392-aae7-3c38b2a100b6) 29 | -------------------------------------------------------------------------------- /Pharmacy Management System/build/classes/pharmacymanagementsystem/Conn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Pharmacy Management System/build/classes/pharmacymanagementsystem/Conn.class -------------------------------------------------------------------------------- /Pharmacy Management System/build/classes/pharmacymanagementsystem/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Pharmacy Management System/build/classes/pharmacymanagementsystem/Main.class -------------------------------------------------------------------------------- /Pharmacy Management System/build/classes/pharmacymanagementsystem/icons/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Pharmacy Management System/build/classes/pharmacymanagementsystem/icons/back.jpg -------------------------------------------------------------------------------- /Pharmacy Management System/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Pharmacy Management System/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=d1740709 2 | build.xml.script.CRC32=5c9d1982 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=d1740709 7 | nbproject/build-impl.xml.script.CRC32=1df18084 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Pharmacy Management System/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Pharmacy Management System/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/PharmacyManagementSystem/src/pharmacymanagementsystem/Main.java 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Pharmacy Management System/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | PharmacyManagementSystem 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Pharmacy Management System/src/pharmacymanagementsystem/Conn.java: -------------------------------------------------------------------------------- 1 | 2 | package pharmacymanagementsystem; 3 | import java.sql.*; 4 | public class Conn { 5 | 6 | Connection c; 7 | Statement s; 8 | 9 | public Conn(){ 10 | try { 11 | Class.forName("com.mysql.cj.jdbc.Driver"); 12 | c = DriverManager.getConnection("jdbc:mysql:///pharmacymanagementsystem", "root", "SS30@krhps"); 13 | s = c.createStatement(); 14 | } catch (Exception e) { 15 | e.printStackTrace(); 16 | } 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Pharmacy Management System/src/pharmacymanagementsystem/icons/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Pharmacy Management System/src/pharmacymanagementsystem/icons/back.jpg -------------------------------------------------------------------------------- /Product-Management-System/README.md: -------------------------------------------------------------------------------- 1 | # Product-Management-System 2 | 3 | ## Admin page 4 | * id - admin 5 | * password - 12345 6 | 7 | 8 | ![proadmin](https://github.com/user-attachments/assets/6620a586-fb90-40c5-a044-77580ab5fcf2) 9 | 10 | 11 | ## Main page 12 | 13 | ![promain](https://github.com/user-attachments/assets/ef0037f8-b9b7-4e0a-9047-65d046ae0497) 14 | 15 | 16 | ## Add Product 17 | 18 | ![proaddpro](https://github.com/user-attachments/assets/884136e8-948b-4a67-9e90-2a88353bab67) 19 | 20 | ## View Details 21 | 22 | 23 | ![Allpro](https://github.com/user-attachments/assets/9d737c29-e489-44b9-9599-1664f9196b22) 24 | 25 | 26 | ### You can search products through Product ID 27 | 28 | ![ALLprosearch](https://github.com/user-attachments/assets/13a4c1ab-2085-4b8f-bcb5-cab627db6ae7) 29 | 30 | 31 | ## Update Detail 32 | 33 | ![updatepro](https://github.com/user-attachments/assets/90dbaecc-451e-4d8b-a739-1f5443ea5034) 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Product-Management-System/build/classes/product_management_system/AddProduct.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Product-Management-System/build/classes/product_management_system/AddProduct.class -------------------------------------------------------------------------------- /Product-Management-System/build/classes/product_management_system/Conn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Product-Management-System/build/classes/product_management_system/Conn.class -------------------------------------------------------------------------------- /Product-Management-System/build/classes/product_management_system/Login.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Product-Management-System/build/classes/product_management_system/Login.class -------------------------------------------------------------------------------- /Product-Management-System/build/classes/product_management_system/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Product-Management-System/build/classes/product_management_system/Main.class -------------------------------------------------------------------------------- /Product-Management-System/build/classes/product_management_system/UpdateProduct$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Product-Management-System/build/classes/product_management_system/UpdateProduct$1.class -------------------------------------------------------------------------------- /Product-Management-System/build/classes/product_management_system/UpdateProduct.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Product-Management-System/build/classes/product_management_system/UpdateProduct.class -------------------------------------------------------------------------------- /Product-Management-System/build/classes/product_management_system/ViewDetail.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Product-Management-System/build/classes/product_management_system/ViewDetail.class -------------------------------------------------------------------------------- /Product-Management-System/build/classes/product_management_system/icons/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Product-Management-System/build/classes/product_management_system/icons/back.jpg -------------------------------------------------------------------------------- /Product-Management-System/build/classes/product_management_system/icons/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Product-Management-System/build/classes/product_management_system/icons/user.png -------------------------------------------------------------------------------- /Product-Management-System/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Product-Management-System/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=b2ddb95b 2 | build.xml.script.CRC32=1bfdb67f 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=b2ddb95b 7 | nbproject/build-impl.xml.script.CRC32=53bca738 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Product-Management-System/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Product-Management-System/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/Product_Management_System/src/product_management_system/Main.java 7 | file:/C:/Users/hp/Documents/NetBeansProjects/Product_Management_System/src/product_management_system/UpdateProduct.java 8 | file:/C:/Users/hp/Documents/NetBeansProjects/Product_Management_System/src/product_management_system/AddProduct.java 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Product-Management-System/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | Product_Management_System 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Product-Management-System/src/product_management_system/Conn.java: -------------------------------------------------------------------------------- 1 | 2 | package product_management_system; 3 | import java.sql.*; 4 | public class Conn { 5 | 6 | Connection c; 7 | Statement s; 8 | 9 | public Conn(){ 10 | try { 11 | Class.forName("com.mysql.cj.jdbc.Driver"); 12 | c = DriverManager.getConnection("jdbc:mysql:///productmanagementsystem", "root", "SS30@krhps"); 13 | s = c.createStatement(); 14 | } catch (Exception e) { 15 | e.printStackTrace(); 16 | } 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Product-Management-System/src/product_management_system/Main.java: -------------------------------------------------------------------------------- 1 | 2 | package product_management_system; 3 | 4 | import java.awt.*; 5 | import java.awt.event.*; 6 | import javax.swing.*; 7 | 8 | public class Main extends JFrame implements ActionListener{ 9 | JButton view, add, close, update; 10 | 11 | 12 | Main() { 13 | 14 | setLayout(null); 15 | 16 | ImageIcon i1 = new ImageIcon(ClassLoader.getSystemResource("Product_Management_System/icons/back.jpg")); 17 | Image i2 = i1.getImage().getScaledInstance(650, 450, Image.SCALE_DEFAULT); 18 | ImageIcon i3 = new ImageIcon(i2); 19 | JLabel image = new JLabel(i3); 20 | image.setBounds(0,0,650,450); 21 | add(image); 22 | 23 | 24 | add = new JButton("Add Products"); 25 | add.setBounds(210, 50, 220, 60); 26 | add.setBackground(Color.red); 27 | add.setForeground(Color.WHITE); 28 | add.setFont(new Font("Tahoma", Font.BOLD, 20)); 29 | add.addActionListener(this); 30 | image.add(add); 31 | 32 | view = new JButton("View Products"); 33 | view.setBounds(210, 140, 220, 60); 34 | view.setBackground(Color.GREEN); 35 | view.setForeground(Color.WHITE); 36 | view.setFont(new Font("Tahoma", Font.BOLD, 20)); 37 | view.addActionListener(this); 38 | image.add(view); 39 | 40 | 41 | update = new JButton("Update Products"); 42 | update.setBounds(210, 230, 220, 60); 43 | update.setBackground(Color.BLUE); 44 | update.setForeground(Color.WHITE); 45 | update.setFont(new Font("Tahoma", Font.BOLD, 20)); 46 | update.addActionListener(this); 47 | image.add(update); 48 | 49 | 50 | 51 | close = new JButton("Close"); 52 | close.setBounds(260, 320, 100, 40); 53 | close.setBackground(Color.BLACK); 54 | close.setForeground(Color.WHITE); 55 | close.setFont(new Font("Tahoma", Font.BOLD, 20)); 56 | close.addActionListener(this); 57 | image.add(close); 58 | 59 | setSize(650,450); 60 | setLocation(400,180); 61 | setVisible(true); 62 | 63 | } 64 | 65 | public void actionPerformed(ActionEvent ae){ 66 | 67 | if(ae.getSource()== close){ 68 | setVisible(false); 69 | }else if(ae.getSource() == add){ 70 | setVisible(false); 71 | new AddProduct(); 72 | }else if(ae.getSource() == view){ 73 | setVisible(false); 74 | new ViewDetail(); 75 | }else{ 76 | setVisible(false); 77 | new UpdateProduct(); 78 | } 79 | 80 | } 81 | 82 | public static void main(String[] args) { 83 | new Main(); 84 | } 85 | 86 | } 87 | -------------------------------------------------------------------------------- /Product-Management-System/src/product_management_system/ViewDetail.java: -------------------------------------------------------------------------------- 1 | 2 | package product_management_system; 3 | 4 | import java.awt.*; 5 | import java.awt.event.*; 6 | import java.sql.*; 7 | import javax.swing.*; 8 | import net.proteanit.sql.DbUtils; 9 | 10 | public class ViewDetail extends JFrame implements ActionListener{ 11 | JTable table; 12 | Choice cpid; 13 | JButton search,exit; 14 | 15 | ViewDetail(){ 16 | 17 | 18 | getContentPane().setBackground(Color.WHITE); 19 | setLayout(null); 20 | 21 | JLabel heading = new JLabel("Search by Product ID"); 22 | heading.setBounds(20, 20, 150, 20); 23 | add(heading); 24 | 25 | cpid = new Choice(); 26 | cpid.setBounds(180, 20, 150, 20); 27 | add(cpid); 28 | 29 | try { 30 | Conn c = new Conn(); 31 | ResultSet rs = c.s.executeQuery("select * from product"); 32 | while(rs.next()){ 33 | cpid.add(rs.getString("proid")); 34 | } 35 | } catch (Exception e) { 36 | e.printStackTrace(); 37 | } 38 | 39 | table = new JTable(); 40 | 41 | try { 42 | Conn c = new Conn(); 43 | ResultSet rs = c.s.executeQuery("select * from product"); 44 | table.setModel(DbUtils.resultSetToTableModel(rs)); 45 | } catch (Exception e) { 46 | e.printStackTrace(); 47 | } 48 | 49 | JScrollPane jsp = new JScrollPane(table); 50 | jsp.setBounds(0,100,900,500); 51 | add(jsp); 52 | 53 | 54 | //search button 55 | search = new JButton("Search"); 56 | search.setBounds(350,20,80,35); 57 | search.addActionListener(this); 58 | add(search); 59 | 60 | //search button 61 | exit = new JButton("Exit"); 62 | exit.setBounds(450,20,80,35); 63 | exit.addActionListener(this); 64 | add(exit); 65 | 66 | setSize(900,600); 67 | setLocation(250,100); 68 | setVisible(true); 69 | 70 | } 71 | 72 | public void actionPerformed(ActionEvent ae){ 73 | 74 | if(ae.getSource() == search){ 75 | String query = "select * from product where proid = '"+cpid.getSelectedItem()+"'"; 76 | try { 77 | Conn c = new Conn(); 78 | ResultSet rs = c.s.executeQuery(query); 79 | table.setModel(DbUtils.resultSetToTableModel(rs)); 80 | } catch (Exception e) { 81 | e.printStackTrace(); 82 | } 83 | }else{ 84 | setVisible(false); 85 | } 86 | 87 | } 88 | 89 | public static void main(String[] args) { 90 | new ViewDetail(); 91 | } 92 | } 93 | -------------------------------------------------------------------------------- /Product-Management-System/src/product_management_system/icons/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Product-Management-System/src/product_management_system/icons/back.jpg -------------------------------------------------------------------------------- /Product-Management-System/src/product_management_system/icons/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Product-Management-System/src/product_management_system/icons/user.png -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/README.md: -------------------------------------------------------------------------------- 1 | # Quiz Application 2 | 3 | ![qui1](https://github.com/user-attachments/assets/c548b9e2-2fe3-44ac-b66e-9ef725608e06) 4 | 5 | ![qui2](https://github.com/user-attachments/assets/b4d52a2f-df72-4e9a-a6e3-a057af4b2d18) 6 | 7 | ![qui3](https://github.com/user-attachments/assets/56131184-9a1d-4cc1-9588-7d5cf2a957fc) 8 | 9 | ![qui4](https://github.com/user-attachments/assets/b4ba245e-fafc-40bf-b048-2cffadb9d020) 10 | -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/build/classes/icons/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Quiz-Application-Using-Java/build/classes/icons/1.jpg -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/build/classes/icons/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Quiz-Application-Using-Java/build/classes/icons/1.png -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/build/classes/icons/quiz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Quiz-Application-Using-Java/build/classes/icons/quiz.jpg -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/build/classes/icons/quizt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Quiz-Application-Using-Java/build/classes/icons/quizt.png -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/build/classes/icons/sc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Quiz-Application-Using-Java/build/classes/icons/sc.jpg -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/build/classes/quiz/application/Login.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Quiz-Application-Using-Java/build/classes/quiz/application/Login.class -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/build/classes/quiz/application/Quiz.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Quiz-Application-Using-Java/build/classes/quiz/application/Quiz.class -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/build/classes/quiz/application/Rules_page.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Quiz-Application-Using-Java/build/classes/quiz/application/Rules_page.class -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/build/classes/quiz/application/Score.java: -------------------------------------------------------------------------------- 1 | 2 | package quiz.application; 3 | 4 | import java.awt.Color; 5 | import java.awt.Font; 6 | import java.awt.Image; 7 | import java.awt.event.ActionEvent; 8 | import java.awt.event.ActionListener; 9 | import javax.swing.ImageIcon; 10 | import javax.swing.JButton; 11 | import javax.swing.JFrame; 12 | import javax.swing.JLabel; 13 | 14 | public class Score extends JFrame implements ActionListener{ 15 | 16 | Score(String name, int score) { 17 | setBounds(290,120,850,550); 18 | getContentPane().setBackground(Color.WHITE); 19 | setLayout(null); 20 | 21 | ImageIcon img1 = new ImageIcon(ClassLoader.getSystemResource("icons/sc.jpg")); 22 | Image img2 = img1.getImage().getScaledInstance(300, 250, Image.SCALE_DEFAULT); 23 | ImageIcon img3 = new ImageIcon(img2); 24 | JLabel image = new JLabel(img3); 25 | image.setBounds(0,100,300,250); 26 | add(image); 27 | 28 | 29 | JLabel heading = new JLabel("Thankyou " + name + " for Playing Mini Quiz"); 30 | heading.setBounds(220,30,700,30); 31 | heading.setFont(new Font("Tahoma", Font.PLAIN, 26)); 32 | heading.setForeground(Color.red); 33 | add(heading); 34 | 35 | JLabel lblscore = new JLabel("Your Score is " + score); 36 | lblscore.setBounds(490,200,300,30); 37 | lblscore.setFont(new Font("Tahoma", Font.PLAIN, 26)); 38 | lblscore.setForeground(Color.red); 39 | add(lblscore); 40 | 41 | 42 | JButton submit = new JButton("Play Again"); 43 | submit.setBounds(520,270,120,30); 44 | submit.setFont(new Font("Tahoma",Font.PLAIN,16)); 45 | submit.setBackground(new Color(30,144,254)); 46 | submit.setForeground(Color.WHITE); 47 | submit.addActionListener(this); 48 | add(submit); 49 | 50 | 51 | 52 | setVisible(true); 53 | } 54 | 55 | 56 | public void actionPerformed(ActionEvent ae){ 57 | setVisible(false); 58 | new Login(); 59 | } 60 | 61 | 62 | 63 | public static void main(String[] args) { 64 | new Score("User",0); 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=04521d5c 2 | build.xml.script.CRC32=91ce39e8 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=04521d5c 7 | nbproject/build-impl.xml.script.CRC32=f528bf49 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | Quiz Application 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/src/icons/quiz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Quiz-Application-Using-Java/src/icons/quiz.jpg -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/src/icons/quizt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Quiz-Application-Using-Java/src/icons/quizt.png -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/src/icons/sc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Quiz-Application-Using-Java/src/icons/sc.jpg -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/src/quiz/application/Login.java: -------------------------------------------------------------------------------- 1 | 2 | package quiz.application; 3 | 4 | import java.awt.*; 5 | import java.awt.event.*; 6 | import javax.swing.*; 7 | 8 | public class Login extends JFrame implements ActionListener{ 9 | 10 | JButton rules,back; 11 | JTextField tfname; 12 | 13 | 14 | Login(){ 15 | 16 | getContentPane().setBackground(Color.WHITE); 17 | setLayout(null); 18 | 19 | ImageIcon img1 = new ImageIcon(ClassLoader.getSystemResource("icons/quizt.png")); 20 | JLabel image = new JLabel(img1); 21 | image.setBounds(0,0,500,500); 22 | add(image); 23 | 24 | 25 | 26 | JLabel heading = new JLabel("Mini Quiz"); 27 | heading.setBounds(650,60,300,45); 28 | heading.setFont(new Font("Tahoma", Font.BOLD, 40)); 29 | heading.setForeground(new Color(30,144,254)); 30 | add(heading); 31 | 32 | 33 | JLabel name = new JLabel("Enter Your Name"); 34 | name.setBounds(670,150,300,20); 35 | name.setFont(new Font("Tahoma", Font.BOLD, 18)); 36 | name.setForeground(Color.BLACK); 37 | add(name); 38 | 39 | 40 | tfname = new JTextField(); 41 | tfname.setBounds(610,200,300,25); 42 | tfname.setFont(new Font("Tahoma", Font.PLAIN, 16)); 43 | add(tfname); 44 | 45 | rules = new JButton("Rules"); 46 | rules.setBounds(610,270,115,25); 47 | rules.setBackground(new Color(30,144,254)); 48 | rules.setForeground(Color.WHITE); 49 | rules.addActionListener(this); 50 | add(rules); 51 | 52 | back = new JButton("Back"); 53 | back.setBounds(800,270,115,25); 54 | back.setBackground(new Color(30,144,254)); 55 | back.setForeground(Color.WHITE); 56 | back.addActionListener(this); 57 | add(back); 58 | 59 | setSize(1000,500); 60 | setLocation(200, 150); 61 | setVisible(true); 62 | } 63 | 64 | public void actionPerformed(ActionEvent ae){ 65 | if(ae.getSource()== rules){ 66 | String name = tfname.getText(); 67 | setVisible(false); 68 | new Rules_page(name); 69 | }else if(ae.getSource()== back){ 70 | setVisible(false); 71 | } 72 | } 73 | 74 | public static void main(String[] args) { 75 | new Login(); 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/src/quiz/application/Rules_page.java: -------------------------------------------------------------------------------- 1 | 2 | package quiz.application; 3 | 4 | import java.awt.*; 5 | import java.awt.event.*; 6 | import javax.swing.*; 7 | 8 | 9 | public class Rules_page extends JFrame implements ActionListener{ 10 | JButton back,start; 11 | String name; 12 | Rules_page(String name){ 13 | 14 | this.name = name; 15 | 16 | getContentPane().setBackground(Color.WHITE); 17 | setLayout(null); 18 | 19 | 20 | JLabel heading = new JLabel("Welcome "+name+" To Mini Quiz"); 21 | heading.setBounds(180,20,700,30); 22 | heading.setFont(new Font("Tahoma", Font.BOLD, 28)); 23 | heading.setForeground(Color.BLACK); 24 | add(heading); 25 | 26 | JLabel rule = new JLabel("Welcome "+name+" To Mini Quiz"); 27 | rule.setBounds(20,90,700,350); 28 | rule.setFont(new Font("Tahoma", Font.PLAIN, 16)); 29 | rule.setText( 30 | ""+ 31 | "1. 10 marks will be awarded for correct answer" + "

" + 32 | "2. The quizzes consists of questions carefully designed to help you self-assess your comprehension of the information presented on the topics covered in the module" + "

" + 33 | "3. After responding to a question, click on the \"Next Question\" button at the bottom to go to the next question" + "

" + 34 | "4. Response time for each question is 30 seconds." + "

" + 35 | "5. Each question in the quiz is of multiple-choice " + "

" + 36 | "6. Read each question carefully, and click on the button next to your response that is based on the information covered on the topic in the module" + "

" + 37 | 38 | " Good-Luck "+ 39 | "" 40 | ); 41 | rule.setForeground(Color.BLACK); 42 | add(rule); 43 | 44 | 45 | 46 | back = new JButton("Back"); 47 | back.setBounds(250,500,100,30); 48 | back.setBackground(new Color(30,144,254)); 49 | back.setForeground(Color.WHITE); 50 | back.addActionListener(this); 51 | add(back); 52 | 53 | start = new JButton("Start"); 54 | start.setBounds(400,500,100,30); 55 | start.setBackground(new Color(30,144,254)); 56 | start.setForeground(Color.WHITE); 57 | start.addActionListener(this); 58 | add(start); 59 | 60 | 61 | 62 | 63 | setSize(800,650); 64 | setLocation(350, 100); 65 | setVisible(true); 66 | } 67 | 68 | public void actionPerformed(ActionEvent ae){ 69 | if(ae.getSource()==start){ 70 | setVisible(false); 71 | new Quiz(name); 72 | 73 | }else { 74 | setVisible(false); 75 | new Login(); 76 | } 77 | } 78 | 79 | 80 | 81 | public static void main(String[] args) { 82 | new Rules_page("User"); 83 | } 84 | } 85 | -------------------------------------------------------------------------------- /Quiz-Application-Using-Java/src/quiz/application/Score.java: -------------------------------------------------------------------------------- 1 | 2 | package quiz.application; 3 | 4 | import java.awt.Color; 5 | import java.awt.Font; 6 | import java.awt.Image; 7 | import java.awt.event.ActionEvent; 8 | import java.awt.event.ActionListener; 9 | import javax.swing.ImageIcon; 10 | import javax.swing.JButton; 11 | import javax.swing.JFrame; 12 | import javax.swing.JLabel; 13 | 14 | public class Score extends JFrame implements ActionListener{ 15 | 16 | Score(String name, int score) { 17 | setBounds(290,120,850,550); 18 | getContentPane().setBackground(Color.WHITE); 19 | setLayout(null); 20 | 21 | ImageIcon img1 = new ImageIcon(ClassLoader.getSystemResource("icons/sc.jpg")); 22 | Image img2 = img1.getImage().getScaledInstance(300, 250, Image.SCALE_DEFAULT); 23 | ImageIcon img3 = new ImageIcon(img2); 24 | JLabel image = new JLabel(img3); 25 | image.setBounds(0,100,300,250); 26 | add(image); 27 | 28 | 29 | JLabel heading = new JLabel("Thankyou " + name + " for Playing Mini Quiz"); 30 | heading.setBounds(220,30,700,30); 31 | heading.setFont(new Font("Tahoma", Font.PLAIN, 26)); 32 | heading.setForeground(Color.red); 33 | add(heading); 34 | 35 | JLabel lblscore = new JLabel("Your Score is " + score); 36 | lblscore.setBounds(490,200,300,30); 37 | lblscore.setFont(new Font("Tahoma", Font.PLAIN, 26)); 38 | lblscore.setForeground(Color.red); 39 | add(lblscore); 40 | 41 | 42 | JButton submit = new JButton("Play Again"); 43 | submit.setBounds(520,270,120,30); 44 | submit.setFont(new Font("Tahoma",Font.PLAIN,16)); 45 | submit.setBackground(new Color(30,144,254)); 46 | submit.setForeground(Color.WHITE); 47 | submit.addActionListener(this); 48 | add(submit); 49 | 50 | 51 | 52 | setVisible(true); 53 | } 54 | 55 | 56 | public void actionPerformed(ActionEvent ae){ 57 | setVisible(false); 58 | new Login(); 59 | } 60 | 61 | 62 | 63 | public static void main(String[] args) { 64 | new Score("User",0); 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Difficulty Level : Easy 2 | 3 | 1. [BMI Calculator](https://github.com/chiragha/Java-Mini-Projects/tree/main/BMI_Calculator) 4 | 2. [Calculator](https://github.com/chiragha/Java-Mini-Projects/tree/main/Calculator) 5 | 3. [Currency Converter](https://github.com/chiragha/Java-Mini-Projects/tree/main/Currency%20Converter) 6 | 4. [Monthly Salary Calculation System](https://github.com/chiragha/Java-Mini-Projects/tree/main/Monthly%20Salary%20Calculation%20System) 7 | 5. [Simple Grocery Shop](https://github.com/chiragha/Java-Mini-Projects/tree/main/Simple%20Grocery%20Shop) 8 | 6. [Simple Loan Calculator](https://github.com/chiragha/Java-Mini-Projects/tree/main/Simple%20Loan%20Calculator) 9 | 7. [Student Grading System](https://github.com/chiragha/Java-Mini-Projects/tree/main/Student%20Grading%20System) 10 | 8. [Temperature Converter](https://github.com/chiragha/Java-Mini-Projects/tree/main/Temperature%20Converter) 11 | 9. [Billing_System](https://github.com/chiragha/Java-Mini-Projects/tree/main/Billing_Systemr) 12 | 10. [Inventory Control System](https://github.com/chiragha/Java-Mini-Projects/tree/main/Inventory%20Control%20System) 13 | 11. [Movie-Ticket-Booking](https://github.com/chiragha/Java-Mini-Projects/tree/main/Movie-Ticket-Booking) 14 | 12. [Student Grading System](https://github.com/chiragha/Java-Mini-Projects/tree/main/Student%20Grading%20System) 15 | 13. [Simple_CRUD_using Table data](https://github.com/chiragha/Java-Mini-Projects/tree/main/Simple_CRUD_using%20Table%20data) 16 | --- 17 | ### Difficulty Level : Intermediate 18 | 19 | 1. [Chat Application](https://github.com/chiragha/Java-Mini-Projects/tree/main/Chat%20Application) 20 | 2. [Fee-Management-System](https://github.com/chiragha/Java-Mini-Projects/tree/main/Fee-Management-System) 21 | 3. [IceCream Shop](https://github.com/chiragha/Java-Mini-Projects/tree/main/IceCream%20Shop) 22 | 4. [Pharmacy Management System](https://github.com/chiragha/Java-Mini-Projects/tree/main/Pharmacy%20Management%20System) 23 | 5. [Product-Management-System](https://github.com/chiragha/Java-Mini-Projects/tree/main/Product-Management-System) 24 | 6. [Quiz-Application-Using-Java](https://github.com/chiragha/Java-Mini-Projects/tree/main/Quiz-Application-Using-Java) 25 | 7. [Restaurant POS](https://github.com/chiragha/Java-Mini-Projects/tree/main/Restaurant%20POS) 26 | 8. [Simple_CRUD_Application](https://github.com/chiragha/Java-Mini-Projects/tree/main/Simple_CRUD_Application) 27 | 9. [Simple_DB_Product_Add Project](https://github.com/chiragha/Java-Mini-Projects/tree/main/Simple_DB_Product_Add%20Project) 28 | 10. [Train-Ticket Booking System](https://github.com/chiragha/Java-Mini-Projects/tree/main/Train-Ticket%20Booking%20System) 29 | 11. [student_Management_System](https://github.com/chiragha/Java-Mini-Projects/tree/main/student_Management_System) 30 | 12. [customer-relationship-manager](https://github.com/chiragha/Java-Mini-Projects/blob/main/customer-relationship-manager) 31 | 13. [Vehicle-Registration](https://github.com/chiragha/Java-Mini-Projects/tree/main/Vehicle-Registration) 32 | 33 | 34 | --- 35 | ### Difficulty Level : Hard 36 | 1. [AirlineManagementSystem](https://github.com/chiragha/AirlineManagementSystem) 37 | 2. [ATM-Simulator-System-](https://github.com/chiragha/ATM-Simulator-System-) 38 | 3. [Library-Management-System](https://github.com/chiragha/Java-Mini-Projects/tree/main/Library-Management-System) 39 | 40 | ## Thank You! 41 | Show some ❤️ by giving the star ⭐ to this repository!! 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /Restaurant POS/README.md: -------------------------------------------------------------------------------- 1 | ![rpos](https://github.com/user-attachments/assets/1be89042-93e9-4487-98c9-291d93cf8ed3) 2 | 3 | 4 | ![rpos2](https://github.com/user-attachments/assets/e68cb387-2f98-4934-a191-4063b0efdcd9) 5 | 6 | -------------------------------------------------------------------------------- /Restaurant POS/build/classes/pos$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Restaurant POS/build/classes/pos$1.class -------------------------------------------------------------------------------- /Restaurant POS/build/classes/pos$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Restaurant POS/build/classes/pos$2.class -------------------------------------------------------------------------------- /Restaurant POS/build/classes/pos$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Restaurant POS/build/classes/pos$3.class -------------------------------------------------------------------------------- /Restaurant POS/build/classes/pos$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Restaurant POS/build/classes/pos$4.class -------------------------------------------------------------------------------- /Restaurant POS/build/classes/pos$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Restaurant POS/build/classes/pos$5.class -------------------------------------------------------------------------------- /Restaurant POS/build/classes/pos$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Restaurant POS/build/classes/pos$6.class -------------------------------------------------------------------------------- /Restaurant POS/build/classes/pos.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Restaurant POS/build/classes/pos.class -------------------------------------------------------------------------------- /Restaurant POS/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Restaurant POS/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=3cf1d34f 2 | build.xml.script.CRC32=9741aed1 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=3cf1d34f 7 | nbproject/build-impl.xml.script.CRC32=8fe1fbd1 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Restaurant POS/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Restaurant POS/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | annotation.processing.enabled=true 2 | annotation.processing.enabled.in.editor=false 3 | annotation.processing.processor.options= 4 | annotation.processing.processors.list= 5 | annotation.processing.run.all.processors=true 6 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 7 | build.classes.dir=${build.dir}/classes 8 | build.classes.excludes=**/*.java,**/*.form 9 | # This directory is removed when the project is cleaned: 10 | build.dir=build 11 | build.generated.dir=${build.dir}/generated 12 | build.generated.sources.dir=${build.dir}/generated-sources 13 | # Only compile against the classpath explicitly listed here: 14 | build.sysclasspath=ignore 15 | build.test.classes.dir=${build.dir}/test/classes 16 | build.test.results.dir=${build.dir}/test/results 17 | # Uncomment to specify the preferred debugger connection transport: 18 | #debug.transport=dt_socket 19 | debug.classpath=\ 20 | ${run.classpath} 21 | debug.modulepath=\ 22 | ${run.modulepath} 23 | debug.test.classpath=\ 24 | ${run.test.classpath} 25 | debug.test.modulepath=\ 26 | ${run.test.modulepath} 27 | # Files in build.classes.dir which should be excluded from distribution jar 28 | dist.archive.excludes= 29 | # This directory is removed when the project is cleaned: 30 | dist.dir=dist 31 | dist.jar=${dist.dir}/Restaurant_Management_System.jar 32 | dist.javadoc.dir=${dist.dir}/javadoc 33 | dist.jlink.dir=${dist.dir}/jlink 34 | dist.jlink.output=${dist.jlink.dir}/Restaurant_Management_System 35 | excludes= 36 | includes=** 37 | jar.compress=false 38 | javac.classpath= 39 | # Space-separated list of extra javac options 40 | javac.compilerargs= 41 | javac.deprecation=false 42 | javac.external.vm=true 43 | javac.modulepath= 44 | javac.processormodulepath= 45 | javac.processorpath=\ 46 | ${javac.classpath} 47 | javac.source=22 48 | javac.target=22 49 | javac.test.classpath=\ 50 | ${javac.classpath}:\ 51 | ${build.classes.dir} 52 | javac.test.modulepath=\ 53 | ${javac.modulepath} 54 | javac.test.processorpath=\ 55 | ${javac.test.classpath} 56 | javadoc.additionalparam= 57 | javadoc.author=false 58 | javadoc.encoding=${source.encoding} 59 | javadoc.html5=false 60 | javadoc.noindex=false 61 | javadoc.nonavbar=false 62 | javadoc.notree=false 63 | javadoc.private=false 64 | javadoc.splitindex=true 65 | javadoc.use=true 66 | javadoc.version=false 67 | javadoc.windowtitle= 68 | # The jlink additional root modules to resolve 69 | jlink.additionalmodules= 70 | # The jlink additional command line parameters 71 | jlink.additionalparam= 72 | jlink.launcher=true 73 | jlink.launcher.name=Restaurant_Management_System 74 | main.class= 75 | manifest.file=manifest.mf 76 | meta.inf.dir=${src.dir}/META-INF 77 | mkdist.disabled=false 78 | platform.active=default_platform 79 | run.classpath=\ 80 | ${javac.classpath}:\ 81 | ${build.classes.dir} 82 | # Space-separated list of JVM arguments used when running the project. 83 | # You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. 84 | # To set system properties for unit tests define test-sys-prop.name=value: 85 | run.jvmargs= 86 | run.modulepath=\ 87 | ${javac.modulepath} 88 | run.test.classpath=\ 89 | ${javac.test.classpath}:\ 90 | ${build.test.classes.dir} 91 | run.test.modulepath=\ 92 | ${javac.test.modulepath} 93 | source.encoding=UTF-8 94 | src.dir=src 95 | test.src.dir=test 96 | -------------------------------------------------------------------------------- /Restaurant POS/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | Restaurant Management System 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Simple Grocery Shop/README.md: -------------------------------------------------------------------------------- 1 | # Screenshot 2 | 3 | ![grocery](https://github.com/user-attachments/assets/c366dbb6-862e-42b1-8edc-060aec121870) 4 | -------------------------------------------------------------------------------- /Simple Grocery Shop/build/classes/Grocery$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Grocery Shop/build/classes/Grocery$1.class -------------------------------------------------------------------------------- /Simple Grocery Shop/build/classes/Grocery$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Grocery Shop/build/classes/Grocery$2.class -------------------------------------------------------------------------------- /Simple Grocery Shop/build/classes/Grocery$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Grocery Shop/build/classes/Grocery$3.class -------------------------------------------------------------------------------- /Simple Grocery Shop/build/classes/Grocery$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Grocery Shop/build/classes/Grocery$4.class -------------------------------------------------------------------------------- /Simple Grocery Shop/build/classes/Grocery$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Grocery Shop/build/classes/Grocery$5.class -------------------------------------------------------------------------------- /Simple Grocery Shop/build/classes/Grocery$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Grocery Shop/build/classes/Grocery$6.class -------------------------------------------------------------------------------- /Simple Grocery Shop/build/classes/Grocery$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Grocery Shop/build/classes/Grocery$7.class -------------------------------------------------------------------------------- /Simple Grocery Shop/build/classes/Grocery$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Grocery Shop/build/classes/Grocery$8.class -------------------------------------------------------------------------------- /Simple Grocery Shop/build/classes/Grocery.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Grocery Shop/build/classes/Grocery.class -------------------------------------------------------------------------------- /Simple Grocery Shop/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Grocery Shop/images/img.jpg -------------------------------------------------------------------------------- /Simple Grocery Shop/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Simple Grocery Shop/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=bf603ea6 2 | build.xml.script.CRC32=b9c8e70c 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=bf603ea6 7 | nbproject/build-impl.xml.script.CRC32=fe0272e0 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Simple Grocery Shop/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Simple Grocery Shop/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | annotation.processing.enabled=true 2 | annotation.processing.enabled.in.editor=false 3 | annotation.processing.processor.options= 4 | annotation.processing.processors.list= 5 | annotation.processing.run.all.processors=true 6 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 7 | build.classes.dir=${build.dir}/classes 8 | build.classes.excludes=**/*.java,**/*.form 9 | # This directory is removed when the project is cleaned: 10 | build.dir=build 11 | build.generated.dir=${build.dir}/generated 12 | build.generated.sources.dir=${build.dir}/generated-sources 13 | # Only compile against the classpath explicitly listed here: 14 | build.sysclasspath=ignore 15 | build.test.classes.dir=${build.dir}/test/classes 16 | build.test.results.dir=${build.dir}/test/results 17 | # Uncomment to specify the preferred debugger connection transport: 18 | #debug.transport=dt_socket 19 | debug.classpath=\ 20 | ${run.classpath} 21 | debug.modulepath=\ 22 | ${run.modulepath} 23 | debug.test.classpath=\ 24 | ${run.test.classpath} 25 | debug.test.modulepath=\ 26 | ${run.test.modulepath} 27 | # Files in build.classes.dir which should be excluded from distribution jar 28 | dist.archive.excludes= 29 | # This directory is removed when the project is cleaned: 30 | dist.dir=dist 31 | dist.jar=${dist.dir}/GroceryShop.jar 32 | dist.javadoc.dir=${dist.dir}/javadoc 33 | dist.jlink.dir=${dist.dir}/jlink 34 | dist.jlink.output=${dist.jlink.dir}/GroceryShop 35 | excludes= 36 | includes=** 37 | jar.compress=false 38 | javac.classpath= 39 | # Space-separated list of extra javac options 40 | javac.compilerargs= 41 | javac.deprecation=false 42 | javac.external.vm=true 43 | javac.modulepath= 44 | javac.processormodulepath= 45 | javac.processorpath=\ 46 | ${javac.classpath} 47 | javac.source=22 48 | javac.target=22 49 | javac.test.classpath=\ 50 | ${javac.classpath}:\ 51 | ${build.classes.dir} 52 | javac.test.modulepath=\ 53 | ${javac.modulepath} 54 | javac.test.processorpath=\ 55 | ${javac.test.classpath} 56 | javadoc.additionalparam= 57 | javadoc.author=false 58 | javadoc.encoding=${source.encoding} 59 | javadoc.html5=false 60 | javadoc.noindex=false 61 | javadoc.nonavbar=false 62 | javadoc.notree=false 63 | javadoc.private=false 64 | javadoc.splitindex=true 65 | javadoc.use=true 66 | javadoc.version=false 67 | javadoc.windowtitle= 68 | # The jlink additional root modules to resolve 69 | jlink.additionalmodules= 70 | # The jlink additional command line parameters 71 | jlink.additionalparam= 72 | jlink.launcher=true 73 | jlink.launcher.name=GroceryShop 74 | main.class= 75 | manifest.file=manifest.mf 76 | meta.inf.dir=${src.dir}/META-INF 77 | mkdist.disabled=false 78 | platform.active=default_platform 79 | run.classpath=\ 80 | ${javac.classpath}:\ 81 | ${build.classes.dir} 82 | # Space-separated list of JVM arguments used when running the project. 83 | # You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. 84 | # To set system properties for unit tests define test-sys-prop.name=value: 85 | run.jvmargs= 86 | run.modulepath=\ 87 | ${javac.modulepath} 88 | run.test.classpath=\ 89 | ${javac.test.classpath}:\ 90 | ${build.test.classes.dir} 91 | run.test.modulepath=\ 92 | ${javac.test.modulepath} 93 | source.encoding=UTF-8 94 | src.dir=src 95 | test.src.dir=test 96 | -------------------------------------------------------------------------------- /Simple Grocery Shop/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | GroceryShop 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Simple Loan Calculator/README.md: -------------------------------------------------------------------------------- 1 | Simple Loan Calculator 2 | 3 | ![javaloanpay](https://github.com/user-attachments/assets/de9a6fa2-f585-425a-bf22-d4aec838bcd0) 4 | -------------------------------------------------------------------------------- /Simple Loan Calculator/build/classes/LoanCalculate/loan$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Loan Calculator/build/classes/LoanCalculate/loan$1.class -------------------------------------------------------------------------------- /Simple Loan Calculator/build/classes/LoanCalculate/loan$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Loan Calculator/build/classes/LoanCalculate/loan$2.class -------------------------------------------------------------------------------- /Simple Loan Calculator/build/classes/LoanCalculate/loan.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple Loan Calculator/build/classes/LoanCalculate/loan.class -------------------------------------------------------------------------------- /Simple Loan Calculator/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Simple Loan Calculator/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=cd91ee80 2 | build.xml.script.CRC32=c39f5a03 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=cd91ee80 7 | nbproject/build-impl.xml.script.CRC32=e95a68ef 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Simple Loan Calculator/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Simple Loan Calculator/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/Loan_Calculation/src/LoanCalculate/loan.java 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Simple Loan Calculator/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | annotation.processing.enabled=true 2 | annotation.processing.enabled.in.editor=false 3 | annotation.processing.processor.options= 4 | annotation.processing.processors.list= 5 | annotation.processing.run.all.processors=true 6 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 7 | build.classes.dir=${build.dir}/classes 8 | build.classes.excludes=**/*.java,**/*.form 9 | # This directory is removed when the project is cleaned: 10 | build.dir=build 11 | build.generated.dir=${build.dir}/generated 12 | build.generated.sources.dir=${build.dir}/generated-sources 13 | # Only compile against the classpath explicitly listed here: 14 | build.sysclasspath=ignore 15 | build.test.classes.dir=${build.dir}/test/classes 16 | build.test.results.dir=${build.dir}/test/results 17 | # Uncomment to specify the preferred debugger connection transport: 18 | #debug.transport=dt_socket 19 | debug.classpath=\ 20 | ${run.classpath} 21 | debug.modulepath=\ 22 | ${run.modulepath} 23 | debug.test.classpath=\ 24 | ${run.test.classpath} 25 | debug.test.modulepath=\ 26 | ${run.test.modulepath} 27 | # Files in build.classes.dir which should be excluded from distribution jar 28 | dist.archive.excludes= 29 | # This directory is removed when the project is cleaned: 30 | dist.dir=dist 31 | dist.jar=${dist.dir}/Loan_Calculation.jar 32 | dist.javadoc.dir=${dist.dir}/javadoc 33 | dist.jlink.dir=${dist.dir}/jlink 34 | dist.jlink.output=${dist.jlink.dir}/Loan_Calculation 35 | excludes= 36 | includes=** 37 | jar.compress=false 38 | javac.classpath= 39 | # Space-separated list of extra javac options 40 | javac.compilerargs= 41 | javac.deprecation=false 42 | javac.external.vm=true 43 | javac.modulepath= 44 | javac.processormodulepath= 45 | javac.processorpath=\ 46 | ${javac.classpath} 47 | javac.source=22 48 | javac.target=22 49 | javac.test.classpath=\ 50 | ${javac.classpath}:\ 51 | ${build.classes.dir} 52 | javac.test.modulepath=\ 53 | ${javac.modulepath} 54 | javac.test.processorpath=\ 55 | ${javac.test.classpath} 56 | javadoc.additionalparam= 57 | javadoc.author=false 58 | javadoc.encoding=${source.encoding} 59 | javadoc.html5=false 60 | javadoc.noindex=false 61 | javadoc.nonavbar=false 62 | javadoc.notree=false 63 | javadoc.private=false 64 | javadoc.splitindex=true 65 | javadoc.use=true 66 | javadoc.version=false 67 | javadoc.windowtitle= 68 | # The jlink additional root modules to resolve 69 | jlink.additionalmodules= 70 | # The jlink additional command line parameters 71 | jlink.additionalparam= 72 | jlink.launcher=true 73 | jlink.launcher.name=Loan_Calculation 74 | main.class= 75 | manifest.file=manifest.mf 76 | meta.inf.dir=${src.dir}/META-INF 77 | mkdist.disabled=false 78 | platform.active=default_platform 79 | run.classpath=\ 80 | ${javac.classpath}:\ 81 | ${build.classes.dir} 82 | # Space-separated list of JVM arguments used when running the project. 83 | # You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. 84 | # To set system properties for unit tests define test-sys-prop.name=value: 85 | run.jvmargs= 86 | run.modulepath=\ 87 | ${javac.modulepath} 88 | run.test.classpath=\ 89 | ${javac.test.classpath}:\ 90 | ${build.test.classes.dir} 91 | run.test.modulepath=\ 92 | ${javac.test.modulepath} 93 | source.encoding=UTF-8 94 | src.dir=src 95 | test.src.dir=test 96 | -------------------------------------------------------------------------------- /Simple Loan Calculator/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | Loan_Calculation 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Simple_CRUD_Application/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Create Student Page 3 | 4 | ![crudadd](https://github.com/user-attachments/assets/a7a81549-8dd6-4db3-9282-c04003700862) 5 | 6 | 7 | # View And Search Student details using Student ID 8 | 9 | ![viewcrud](https://github.com/user-attachments/assets/61e839ab-27e5-4a7c-9b3c-75693acdca9e) 10 | 11 | # Update Details 12 | 13 | ![updatecrud](https://github.com/user-attachments/assets/3822d69b-1144-4397-8022-baeceada89c3) 14 | 15 | # Delete Details 16 | 17 | ![dltcrud](https://github.com/user-attachments/assets/fc981482-bbff-4af0-a371-c8f15fd4cbbe) 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Simple_CRUD_Application/build/classes/crud_application/AddData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_Application/build/classes/crud_application/AddData.class -------------------------------------------------------------------------------- /Simple_CRUD_Application/build/classes/crud_application/AddData.rs: -------------------------------------------------------------------------------- 1 | CRUD_Application.AddData 2 | AddData.AddData 3 | -------------------------------------------------------------------------------- /Simple_CRUD_Application/build/classes/crud_application/Conn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_Application/build/classes/crud_application/Conn.class -------------------------------------------------------------------------------- /Simple_CRUD_Application/build/classes/crud_application/DeleteData$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_Application/build/classes/crud_application/DeleteData$1.class -------------------------------------------------------------------------------- /Simple_CRUD_Application/build/classes/crud_application/DeleteData.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_Application/build/classes/crud_application/DeleteData.class -------------------------------------------------------------------------------- /Simple_CRUD_Application/build/classes/crud_application/Updatedata.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_Application/build/classes/crud_application/Updatedata.class -------------------------------------------------------------------------------- /Simple_CRUD_Application/build/classes/crud_application/Viewdata.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_Application/build/classes/crud_application/Viewdata.class -------------------------------------------------------------------------------- /Simple_CRUD_Application/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Simple_CRUD_Application/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=93955edc 2 | build.xml.script.CRC32=b09718a8 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=93955edc 7 | nbproject/build-impl.xml.script.CRC32=42b96737 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Simple_CRUD_Application/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Simple_CRUD_Application/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/CRUD_Application/src/crud_application/Updatedata.java 7 | file:/C:/Users/hp/Documents/NetBeansProjects/CRUD_Application/src/crud_application/AddData.java 8 | file:/C:/Users/hp/Documents/NetBeansProjects/CRUD_Application/src/crud_application/DeleteData.java 9 | file:/C:/Users/hp/Documents/NetBeansProjects/CRUD_Application/src/crud_application/Viewdata.java 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Simple_CRUD_Application/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | CRUD_Application 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Simple_CRUD_Application/src/crud_application/Conn.java: -------------------------------------------------------------------------------- 1 | package crud_application; 2 | 3 | import java.sql.*; 4 | 5 | public class Conn { 6 | 7 | Connection c; 8 | Statement s; 9 | 10 | public Conn () { 11 | try { 12 | Class.forName("com.mysql.cj.jdbc.Driver"); 13 | c = DriverManager.getConnection("jdbc:mysql:///crud_db", "root", "SS30@krhps"); 14 | s = c.createStatement(); 15 | } catch (Exception e) { 16 | e.printStackTrace(); 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/README.md: -------------------------------------------------------------------------------- 1 | ### In this Part you can select table data and apply CRUD operation. 2 | 3 | ![simpleaddcrud](https://github.com/user-attachments/assets/e8e2c81a-4ef3-4aa6-9983-0c86579c744a) 4 | 5 | ![updatesimplecrud](https://github.com/user-attachments/assets/c18a04bc-bf57-4d81-b0ab-e36ad157a6c4) 6 | 7 | ![daletecrudsimple](https://github.com/user-attachments/assets/9846438a-a0dc-4068-86ba-0d76ae7e7a2c) 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/build/classes/single_page_crud/Main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_using Table data/build/classes/single_page_crud/Main$1.class -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/build/classes/single_page_crud/Main$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_using Table data/build/classes/single_page_crud/Main$2.class -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/build/classes/single_page_crud/Main$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_using Table data/build/classes/single_page_crud/Main$3.class -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/build/classes/single_page_crud/Main$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_using Table data/build/classes/single_page_crud/Main$4.class -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/build/classes/single_page_crud/Main$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_using Table data/build/classes/single_page_crud/Main$5.class -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/build/classes/single_page_crud/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_CRUD_using Table data/build/classes/single_page_crud/Main.class -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=7eeef051 2 | build.xml.script.CRC32=b54e666a 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=7eeef051 7 | nbproject/build-impl.xml.script.CRC32=32b9de63 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/Single_page_CRUD/src/single_page_crud/Main.java 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Simple_CRUD_using Table data/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | Single_page_CRUD 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Simple_DB_Product_Add Project/README.md: -------------------------------------------------------------------------------- 1 | # Simple_DB_Product_Add Project 2 | 3 | ```perl 4 | 5 | create database salesmanagementsystem; 6 | 7 | 8 | use salesmanagementsystem; 9 | 10 | create table product(pname varchar(40), price varchar(30),qty varchar(30), discount varchar(40), total varchar(30)); 11 | 12 | select * from product; 13 | 14 | ``` 15 | 16 | 17 | ![simpledbproj](https://github.com/user-attachments/assets/c1886277-e79a-4254-b8ac-b97c8b45f435) 18 | 19 | 20 | -------------------------------------------------------------------------------- /Simple_DB_Product_Add Project/build/classes/simple_db_project/Conn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_DB_Product_Add Project/build/classes/simple_db_project/Conn.class -------------------------------------------------------------------------------- /Simple_DB_Product_Add Project/build/classes/simple_db_project/Simple_db_project.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Simple_DB_Product_Add Project/build/classes/simple_db_project/Simple_db_project.class -------------------------------------------------------------------------------- /Simple_DB_Product_Add Project/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=a9c6dd3a 2 | build.xml.script.CRC32=ea8aa0f7 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=a9c6dd3a 7 | nbproject/build-impl.xml.script.CRC32=e840af01 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Simple_DB_Product_Add Project/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Simple_DB_Product_Add Project/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Simple_DB_Product_Add Project/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | Simple_db_project 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Simple_DB_Product_Add Project/src/simple_db_project/Conn.java: -------------------------------------------------------------------------------- 1 | 2 | package simple_db_project; 3 | 4 | import java.sql.Connection; 5 | import java.sql.DriverManager; 6 | import java.sql.Statement; 7 | import java.sql.*; 8 | 9 | 10 | public class Conn { 11 | 12 | Connection c; 13 | Statement s; 14 | 15 | public Conn(){ 16 | try { 17 | Class.forName("com.mysql.cj.jdbc.Driver"); 18 | c = DriverManager.getConnection("jdbc:mysql:///salesmanagementsystem", "root", "SS30@krhps"); 19 | s = c.createStatement(); 20 | } catch (Exception e) { 21 | e.printStackTrace(); 22 | } 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /Student Grading System/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Student Grading System 3 | 4 | ![studgrad](https://github.com/user-attachments/assets/9279f14f-9514-4737-8aaa-b5221ae5355d) 5 | 6 | 7 | Front End : Java, JavaSwing. 8 | Back End : Database(MySql) 9 | IDE used : Netbeans. 10 | 11 | -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$1.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$10.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$11.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$11.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$12.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$12.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$2.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$3.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$4.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$5.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$6.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$7.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$8.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem$9.class -------------------------------------------------------------------------------- /Student Grading System/build/classes/student_grade/StudentGradeSystem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Student Grading System/build/classes/student_grade/StudentGradeSystem.class -------------------------------------------------------------------------------- /Student Grading System/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Student Grading System/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=73f1616f 2 | build.xml.script.CRC32=3fa96b82 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=73f1616f 7 | nbproject/build-impl.xml.script.CRC32=ec6102d5 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Student Grading System/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Student Grading System/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/Student_Grade/src/student_grade/StudentGradeSystem.java 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Student Grading System/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | annotation.processing.enabled=true 2 | annotation.processing.enabled.in.editor=false 3 | annotation.processing.processor.options= 4 | annotation.processing.processors.list= 5 | annotation.processing.run.all.processors=true 6 | annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output 7 | build.classes.dir=${build.dir}/classes 8 | build.classes.excludes=**/*.java,**/*.form 9 | # This directory is removed when the project is cleaned: 10 | build.dir=build 11 | build.generated.dir=${build.dir}/generated 12 | build.generated.sources.dir=${build.dir}/generated-sources 13 | # Only compile against the classpath explicitly listed here: 14 | build.sysclasspath=ignore 15 | build.test.classes.dir=${build.dir}/test/classes 16 | build.test.results.dir=${build.dir}/test/results 17 | # Uncomment to specify the preferred debugger connection transport: 18 | #debug.transport=dt_socket 19 | debug.classpath=\ 20 | ${run.classpath} 21 | debug.modulepath=\ 22 | ${run.modulepath} 23 | debug.test.classpath=\ 24 | ${run.test.classpath} 25 | debug.test.modulepath=\ 26 | ${run.test.modulepath} 27 | # Files in build.classes.dir which should be excluded from distribution jar 28 | dist.archive.excludes= 29 | # This directory is removed when the project is cleaned: 30 | dist.dir=dist 31 | dist.jar=${dist.dir}/Student_Grade.jar 32 | dist.javadoc.dir=${dist.dir}/javadoc 33 | dist.jlink.dir=${dist.dir}/jlink 34 | dist.jlink.output=${dist.jlink.dir}/Student_Grade 35 | excludes= 36 | includes=** 37 | jar.compress=false 38 | javac.classpath= 39 | # Space-separated list of extra javac options 40 | javac.compilerargs= 41 | javac.deprecation=false 42 | javac.external.vm=true 43 | javac.modulepath= 44 | javac.processormodulepath= 45 | javac.processorpath=\ 46 | ${javac.classpath} 47 | javac.source=22 48 | javac.target=22 49 | javac.test.classpath=\ 50 | ${javac.classpath}:\ 51 | ${build.classes.dir} 52 | javac.test.modulepath=\ 53 | ${javac.modulepath} 54 | javac.test.processorpath=\ 55 | ${javac.test.classpath} 56 | javadoc.additionalparam= 57 | javadoc.author=false 58 | javadoc.encoding=${source.encoding} 59 | javadoc.html5=false 60 | javadoc.noindex=false 61 | javadoc.nonavbar=false 62 | javadoc.notree=false 63 | javadoc.private=false 64 | javadoc.splitindex=true 65 | javadoc.use=true 66 | javadoc.version=false 67 | javadoc.windowtitle= 68 | # The jlink additional root modules to resolve 69 | jlink.additionalmodules= 70 | # The jlink additional command line parameters 71 | jlink.additionalparam= 72 | jlink.launcher=true 73 | jlink.launcher.name=Student_Grade 74 | main.class=student_grade.Student_Grade 75 | manifest.file=manifest.mf 76 | meta.inf.dir=${src.dir}/META-INF 77 | mkdist.disabled=false 78 | platform.active=default_platform 79 | run.classpath=\ 80 | ${javac.classpath}:\ 81 | ${build.classes.dir} 82 | # Space-separated list of JVM arguments used when running the project. 83 | # You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. 84 | # To set system properties for unit tests define test-sys-prop.name=value: 85 | run.jvmargs= 86 | run.modulepath=\ 87 | ${javac.modulepath} 88 | run.test.classpath=\ 89 | ${javac.test.classpath}:\ 90 | ${build.test.classes.dir} 91 | run.test.modulepath=\ 92 | ${javac.test.modulepath} 93 | source.encoding=UTF-8 94 | src.dir=src 95 | test.src.dir=test 96 | -------------------------------------------------------------------------------- /Student Grading System/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | Student_Grade 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Temperature Converter/README.md: -------------------------------------------------------------------------------- 1 | # Temperature Converter 2 | 3 | A very basic application created using Java Swing. 4 | 5 | 6 | ![tempconvo](https://github.com/user-attachments/assets/76e103ee-ef18-4527-92b7-5b68c5d5b079) 7 | -------------------------------------------------------------------------------- /Train-Ticket Booking System/README.md: -------------------------------------------------------------------------------- 1 | # DataBase Code 2 | 3 | ```perl 4 | 5 | create database trainbookingsystem; 6 | 7 | show databases; 8 | 9 | use trainbookingsystem; 10 | 11 | create table seat(trainno varchar(30), seats varchar(30), date varchar(40), status varchar(30)); 12 | select * from seat; 13 | 14 | 15 | create table customseats(trainno varchar(40), seats varchar(30), name varchar(30), phone varchar(30), passfrom varchar(40), passto varchar(30), passclass varchar(30), date varchar(30)); 16 | select * from customseats; 17 | 18 | ``` 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | ## Main page 30 | 31 | ![trainbookmain](https://github.com/user-attachments/assets/ae3a7af5-f08a-43d9-9171-72e138b27f12) 32 | 33 | ## Add Seats 34 | 35 | * You can add seats with the following date. 36 | 37 | ![add tain seats](https://github.com/user-attachments/assets/0e41083f-71b9-4aa0-89e0-c50a687c331b) 38 | 39 | ## Seats Booking Page 40 | 41 | ![bookseattaion](https://github.com/user-attachments/assets/3f88eba3-8012-4143-93db-0bad357eb036) 42 | 43 | ### You can search for vacant seats by using the date. 44 | 45 | ![seatchtckttain](https://github.com/user-attachments/assets/89cc9b19-2e00-4d6f-922c-a251eb65229c) 46 | 47 | 48 | ### Once the ticket is booked its status will change 49 | 50 | 51 | ![before booking tckt](https://github.com/user-attachments/assets/dfa762f1-a035-433e-a3a9-a385502a6411) 52 | 53 | 54 | ![status changed](https://github.com/user-attachments/assets/34af3664-c45c-41e1-be3a-2aeb23673ab1) 55 | 56 | 57 | -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/Addseatpage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/Addseatpage$1.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/Addseatpage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/Addseatpage$2.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/Addseatpage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/Addseatpage$3.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/Addseatpage$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/Addseatpage$4.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/Addseatpage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/Addseatpage.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/Main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/Main$1.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/Main$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/Main$2.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/Main$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/Main$3.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/Main.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$1.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$2.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$3.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$4.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$5.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat$6.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Train-Ticket Booking System/build/classes/TrainBooking/TrainSeat.class -------------------------------------------------------------------------------- /Train-Ticket Booking System/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Train-Ticket Booking System/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=64a4ad37 2 | build.xml.script.CRC32=0d050a54 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=64a4ad37 7 | nbproject/build-impl.xml.script.CRC32=bf4c8c01 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Train-Ticket Booking System/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Train-Ticket Booking System/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Train-Ticket Booking System/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | TrainBookingSystem 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Vehicle-Registration/README.md: -------------------------------------------------------------------------------- 1 | ## Vehicle-ID is primary key 2 | 3 | ![vehicle](https://github.com/user-attachments/assets/1a0d6a82-1838-430e-8e68-0771823aa81b) 4 | 5 | ![vehicle info](https://github.com/user-attachments/assets/58ceeaf6-8379-45ea-861d-1141402a87ec) 6 | 7 | ## Database 8 | 9 | ```java 10 | create database vehiclereg; 11 | use vehiclereg; 12 | 13 | create table vehicle(vid varchar(40),name varchar(40), mname varchar(30), manuf varchar(40), color varchar(30) ,cost varchar(40),type varchar(40)); 14 | select * from vehicle; 15 | ``` 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Vehicle-Registration/build/classes/icons/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Vehicle-Registration/build/classes/icons/v.png -------------------------------------------------------------------------------- /Vehicle-Registration/build/classes/vehiclereg/Addvehicle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Vehicle-Registration/build/classes/vehiclereg/Addvehicle.class -------------------------------------------------------------------------------- /Vehicle-Registration/build/classes/vehiclereg/Conn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Vehicle-Registration/build/classes/vehiclereg/Conn.class -------------------------------------------------------------------------------- /Vehicle-Registration/build/classes/vehiclereg/vinfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Vehicle-Registration/build/classes/vehiclereg/vinfo.class -------------------------------------------------------------------------------- /Vehicle-Registration/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /Vehicle-Registration/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=08d29453 2 | build.xml.script.CRC32=3c262478 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=08d29453 7 | nbproject/build-impl.xml.script.CRC32=85bb1ee1 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /Vehicle-Registration/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /Vehicle-Registration/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Vehicle-Registration/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | VehicleReg 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Vehicle-Registration/src/icons/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/Vehicle-Registration/src/icons/v.png -------------------------------------------------------------------------------- /Vehicle-Registration/src/vehiclereg/Conn.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | package vehiclereg; 5 | import java.sql.*; 6 | public class Conn { 7 | 8 | Connection c; 9 | Statement s; 10 | 11 | public Conn(){ 12 | try { 13 | Class.forName("com.mysql.cj.jdbc.Driver"); 14 | c = DriverManager.getConnection("jdbc:mysql:///vehiclereg", "root", "SS30@krhps"); 15 | s = c.createStatement(); 16 | } catch (Exception e) { 17 | e.printStackTrace(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Vehicle-Registration/src/vehiclereg/vinfo.java: -------------------------------------------------------------------------------- 1 | package vehiclereg; 2 | 3 | import javax.swing.*; 4 | import java.awt.*; 5 | import java.sql.*; 6 | import net.proteanit.sql.DbUtils; 7 | import java.awt.event.*; 8 | 9 | public class vinfo extends JFrame implements ActionListener{ 10 | 11 | JTable table; 12 | Choice vid; 13 | JButton search, print, update, back; 14 | 15 | vinfo() { 16 | 17 | getContentPane().setBackground(Color.WHITE); 18 | setLayout(null); 19 | 20 | JLabel searchlbl = new JLabel("Search by Student Id"); 21 | searchlbl.setBounds(20, 20, 150, 20); 22 | add(searchlbl); 23 | 24 | vid = new Choice(); 25 | vid.setBounds(180, 20, 150, 20); 26 | add(vid); 27 | 28 | try { 29 | Conn c = new Conn(); 30 | ResultSet rs = c.s.executeQuery("select * from vehicle"); 31 | while(rs.next()) { 32 | vid.add(rs.getString("vid")); 33 | } 34 | } catch (Exception e) { 35 | e.printStackTrace(); 36 | } 37 | 38 | table = new JTable(); 39 | 40 | try { 41 | Conn c = new Conn(); 42 | ResultSet rs = c.s.executeQuery("select * from vehicle"); 43 | table.setModel(DbUtils.resultSetToTableModel(rs)); 44 | } catch (Exception e) { 45 | e.printStackTrace(); 46 | } 47 | 48 | JScrollPane jsp = new JScrollPane(table); 49 | jsp.setBounds(0, 100, 900, 600); 50 | add(jsp); 51 | 52 | search = new JButton("Search"); 53 | search.setBounds(20, 50, 80, 30); 54 | search.addActionListener(this); 55 | add(search); 56 | 57 | print = new JButton("Print"); 58 | print.setBounds(120, 50, 80, 30); 59 | print.addActionListener(this); 60 | add(print); 61 | 62 | 63 | setSize(900, 700); 64 | setLocation(300, 100); 65 | setVisible(true); 66 | } 67 | 68 | public void actionPerformed(ActionEvent ae) { 69 | if (ae.getSource() == search) { 70 | String query = "select * from vehicle where vid = '"+vid.getSelectedItem()+"'"; 71 | try { 72 | Conn c = new Conn(); 73 | ResultSet rs = c.s.executeQuery(query); 74 | table.setModel(DbUtils.resultSetToTableModel(rs)); 75 | } catch (Exception e) { 76 | e.printStackTrace(); 77 | } 78 | } else if (ae.getSource() == print) { 79 | try { 80 | table.print(); 81 | } catch (Exception e) { 82 | e.printStackTrace(); 83 | } 84 | } 85 | } 86 | 87 | public static void main(String[] args) { 88 | new vinfo(); 89 | } 90 | } -------------------------------------------------------------------------------- /customer-relationship-manager/README.md: -------------------------------------------------------------------------------- 1 | # DataBase 2 | 3 | ```java 4 | create database crm; 5 | use crm; 6 | 7 | create table customer(name varchar(40), nationality varchar(30), phone varchar(40), address varchar(30), aadhar varchar(30) ,gender varchar(30)); 8 | 9 | show databases; 10 | 11 | select * from customer; 12 | ``` 13 | 14 | 15 | 16 | 17 | 18 | # Main Page 19 | 20 | ![main](https://github.com/user-attachments/assets/8c7aeef5-eec4-45fa-a5ff-bb96084ec6be) 21 | 22 | # Add Details 23 | 24 | ![add](https://github.com/user-attachments/assets/4896769d-8d2e-4dbd-902e-6c521beb95e3) 25 | 26 | ### Primary key: Aadhar Number 27 | 28 | # View Details 29 | 30 | ![view](https://github.com/user-attachments/assets/a3ec3abb-4535-4112-a2dd-4f950adf9933) 31 | 32 | ### Search Details using Aadhar Number 33 | 34 | ![search](https://github.com/user-attachments/assets/36ba30b4-d4a1-4f51-a51e-3ae7a1a85eaa) 35 | 36 | # Update Page 37 | 38 | ![update](https://github.com/user-attachments/assets/42007a41-07c5-4e3c-97c5-46db968c6a87) 39 | 40 | # Delete Page 41 | 42 | ![delete](https://github.com/user-attachments/assets/9f6bd09a-9310-4202-b8fc-3b1b06cb4c9d) 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /customer-relationship-manager/build/classes/crm/AddCustomer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/customer-relationship-manager/build/classes/crm/AddCustomer.class -------------------------------------------------------------------------------- /customer-relationship-manager/build/classes/crm/Conn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/customer-relationship-manager/build/classes/crm/Conn.class -------------------------------------------------------------------------------- /customer-relationship-manager/build/classes/crm/Delete$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/customer-relationship-manager/build/classes/crm/Delete$1.class -------------------------------------------------------------------------------- /customer-relationship-manager/build/classes/crm/Delete.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/customer-relationship-manager/build/classes/crm/Delete.class -------------------------------------------------------------------------------- /customer-relationship-manager/build/classes/crm/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/customer-relationship-manager/build/classes/crm/Main.class -------------------------------------------------------------------------------- /customer-relationship-manager/build/classes/crm/ShowCustomer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/customer-relationship-manager/build/classes/crm/ShowCustomer.class -------------------------------------------------------------------------------- /customer-relationship-manager/build/classes/crm/Updatedata.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/customer-relationship-manager/build/classes/crm/Updatedata.class -------------------------------------------------------------------------------- /customer-relationship-manager/build/classes/icons/add-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/customer-relationship-manager/build/classes/icons/add-user.png -------------------------------------------------------------------------------- /customer-relationship-manager/build/classes/icons/crm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/customer-relationship-manager/build/classes/icons/crm.png -------------------------------------------------------------------------------- /customer-relationship-manager/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /customer-relationship-manager/nbproject/genfiles.properties: -------------------------------------------------------------------------------- 1 | build.xml.data.CRC32=a308fd4c 2 | build.xml.script.CRC32=2a9692bc 3 | build.xml.stylesheet.CRC32=f85dc8f2@1.111.0.48 4 | # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. 5 | # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. 6 | nbproject/build-impl.xml.data.CRC32=a308fd4c 7 | nbproject/build-impl.xml.script.CRC32=fa593cf1 8 | nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48 9 | -------------------------------------------------------------------------------- /customer-relationship-manager/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=C:\\Users\\hp\\AppData\\Roaming\\NetBeans\\22\\build.properties 3 | -------------------------------------------------------------------------------- /customer-relationship-manager/nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | file:/C:/Users/hp/Documents/NetBeansProjects/CRM/src/crm/Main.java 7 | file:/C:/Users/hp/Documents/NetBeansProjects/CRM/src/crm/ShowCustomer.java 8 | file:/C:/Users/hp/Documents/NetBeansProjects/CRM/src/crm/Updatedata.java 9 | file:/C:/Users/hp/Documents/NetBeansProjects/CRM/src/crm/Delete.java 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /customer-relationship-manager/nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.java.j2seproject 4 | 5 | 6 | CRM 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /customer-relationship-manager/src/crm/Conn.java: -------------------------------------------------------------------------------- 1 | package crm; 2 | import java.sql.*; 3 | public class Conn { 4 | 5 | Connection c; 6 | Statement s; 7 | 8 | public Conn(){ 9 | try { 10 | Class.forName("com.mysql.cj.jdbc.Driver"); 11 | c = DriverManager.getConnection("jdbc:mysql:///crm", "root", "SS30@krhps"); 12 | s = c.createStatement(); 13 | } catch (Exception e) { 14 | e.printStackTrace(); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /customer-relationship-manager/src/crm/Main.java: -------------------------------------------------------------------------------- 1 | 2 | package crm; 3 | 4 | import java.awt.*; 5 | import java.awt.event.*; 6 | import javax.swing.*; 7 | 8 | public class Main extends JFrame implements ActionListener{ 9 | JButton add,view,update,delete,exit; 10 | 11 | 12 | Main() { 13 | 14 | 15 | setLayout(null); 16 | 17 | 18 | //side image 19 | Color formColor = new Color(53, 59, 72); 20 | getContentPane().setBackground(formColor); 21 | 22 | 23 | ImageIcon i1 = new ImageIcon(ClassLoader.getSystemResource("icons/crm.png")); 24 | Image i2 = i1.getImage().getScaledInstance(280, 280, Image.SCALE_DEFAULT); 25 | ImageIcon i3 = new ImageIcon(i2); 26 | JLabel image = new JLabel(i3); 27 | image.setBounds(30,30,280,280); 28 | add(image); 29 | 30 | JLabel lblcardno = new JLabel("Customer Relationship Management"); 31 | lblcardno.setBounds(330, 30, 450, 25); 32 | lblcardno.setFont(new Font("Tahoma", Font.BOLD, 24)); 33 | lblcardno.setForeground(Color.red); 34 | add(lblcardno); 35 | 36 | add = new JButton("Add Customer"); 37 | add.setBounds(380, 100, 180, 35); 38 | add.addActionListener(this); 39 | add(add); 40 | 41 | view = new JButton("View Customer Details"); 42 | view.setBounds(600, 100, 180, 35); 43 | view.addActionListener(this); 44 | add(view); 45 | 46 | update = new JButton("Update Customer Details"); 47 | update.setBounds(380, 160, 180, 35); 48 | update.addActionListener(this); 49 | add(update); 50 | 51 | delete = new JButton("Delete Details"); 52 | delete.setBounds(600, 160, 180, 35); 53 | delete.addActionListener(this); 54 | add(delete); 55 | 56 | 57 | 58 | exit = new JButton("EXIT"); 59 | exit.setBounds(620, 280, 120, 35); 60 | exit.addActionListener(this); 61 | exit.setBackground(Color.red); 62 | exit.setForeground(Color.WHITE); 63 | add(exit); 64 | 65 | 66 | 67 | setSize(800,380); 68 | setLocation(300,50); 69 | setVisible(true); 70 | } 71 | 72 | public void actionPerformed(ActionEvent ae){ 73 | if(ae.getSource()== exit){ 74 | System.exit(0); 75 | }else if(ae.getSource() == add){ 76 | setVisible(false); 77 | new AddCustomer(); 78 | }else if(ae.getSource()==view){ 79 | setVisible(false); 80 | new ShowCustomer(); 81 | }else if(ae.getSource() == update){ 82 | setVisible(false); 83 | new ShowCustomer(); 84 | }else if(ae.getSource() == delete){ 85 | setVisible(false); 86 | new Delete(); 87 | } 88 | 89 | } 90 | 91 | 92 | public static void main(String[] args) { 93 | new Main(); 94 | } 95 | 96 | } 97 | -------------------------------------------------------------------------------- /customer-relationship-manager/src/icons/add-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/customer-relationship-manager/src/icons/add-user.png -------------------------------------------------------------------------------- /customer-relationship-manager/src/icons/crm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/customer-relationship-manager/src/icons/crm.png -------------------------------------------------------------------------------- /student_Management_System/README.md: -------------------------------------------------------------------------------- 1 | # Student Management System 2 | 3 | Welcome to the Student Management System, a simple Java-based command-line application for managing student records. 4 | 5 | # Overview 6 | 7 | The Student Management System is a command-line application that allows users to perform various actions related to student data management. It includes the following functionalities: 8 | 9 | Add Student: Add a new student by providing their name, and mobile number. 10 | 11 | Display Student: View a list of all students currently stored in the system. 12 | 13 | Search Student: Search an individual student currently stored in the system. 14 | 15 | Exit: Quit the application when done. 16 | 17 | 18 | ## ==== Software And Tools Required ==== 19 | 20 | * MySQL 21 | * Netbeans 22 | * Java [JDK 8+] 23 | 24 | 25 | ## ======= Dummy Database Initialization ========== 26 | 27 | STEP 1: Open MySQL Command Prompt or MySQL Workbench 28 | 29 | STEP 2: Login to the administrator user as : mysql -u -p (Enter Password if asked) 30 | 31 | STEP 3 :Copy paste the following MySql Commands: 32 | 33 | 34 | ``` 35 | create database studentmanagementsystem; 36 | 37 | show databases; 38 | 39 | use studentmanagementsystem; 40 | 41 | create table student(name varchar(40), fname varchar(40) , rollno varchar(20), dob varchar(40), address varchar(100), phone varchar(20), email varchar(40), x varchar(20), xii varchar(20), aadhar varchar(20), course varchar(40), branch varchar(40)); 42 | 43 | select * from student; 44 | ``` 45 | 46 | 47 | # Screenshots 48 | 49 | ![studadd](https://github.com/user-attachments/assets/973f9358-44cb-40f9-a954-34447f5b7454) 50 | 51 | 52 | ![seedetail](https://github.com/user-attachments/assets/1aed2d25-1cd3-4c6b-91b1-72e9b44ba49f) 53 | 54 | 55 | 56 | Thank you for using the Student Management System. If you have any questions or suggestions, please feel free to reach out. 57 | Have a great day! 58 | -------------------------------------------------------------------------------- /student_Management_System/build/classes/student/management/system/AddStud.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/student_Management_System/build/classes/student/management/system/AddStud.class -------------------------------------------------------------------------------- /student_Management_System/build/classes/student/management/system/Conn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/student_Management_System/build/classes/student/management/system/Conn.class -------------------------------------------------------------------------------- /student_Management_System/build/classes/student/management/system/StudDetails.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chiragha/Java-Mini-Projects/e6d24a280dd15ca4739bdd710fc120d194dc84a2/student_Management_System/build/classes/student/management/system/StudDetails.class -------------------------------------------------------------------------------- /student_Management_System/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /student_Management_System/src/student/management/system/Conn.java: -------------------------------------------------------------------------------- 1 | package student.management.system; 2 | 3 | import java.sql.*; 4 | 5 | public class Conn { 6 | Connection c; 7 | Statement s; 8 | Conn() { 9 | try { 10 | Class.forName("com.mysql.cj.jdbc.Driver"); 11 | c = DriverManager.getConnection("jdbc:mysql:///studentmanagementsystem", "root", "SS30@krhps"); 12 | s = c.createStatement(); 13 | } catch (Exception e) { 14 | e.printStackTrace(); 15 | } 16 | } 17 | 18 | 19 | } 20 | -------------------------------------------------------------------------------- /student_Management_System/src/student/management/system/StudDetails.java: -------------------------------------------------------------------------------- 1 | package student.management.system; 2 | 3 | import java.awt.*; 4 | import java.awt.event.ActionEvent; 5 | import java.awt.event.ActionListener; 6 | import javax.swing.*; 7 | import java.sql.*; 8 | import net.proteanit.sql.DbUtils; 9 | 10 | public class StudDetails extends JFrame implements ActionListener{ 11 | 12 | JTable table; 13 | Choice crollno; 14 | JButton search,exit; 15 | 16 | StudDetails(){ 17 | 18 | getContentPane().setBackground(Color.WHITE); 19 | setLayout(null); 20 | 21 | JLabel heading = new JLabel("Search by Roll Number"); 22 | heading.setBounds(20, 20, 150, 20); 23 | add(heading); 24 | 25 | crollno = new Choice(); 26 | crollno.setBounds(180, 20, 150, 20); 27 | add(crollno); 28 | 29 | try { 30 | Conn c = new Conn(); 31 | ResultSet rs = c.s.executeQuery("select * from student"); 32 | while(rs.next()){ 33 | crollno.add(rs.getString("rollno")); 34 | } 35 | } catch (Exception e) { 36 | e.printStackTrace(); 37 | } 38 | 39 | table = new JTable(); 40 | 41 | try { 42 | Conn c = new Conn(); 43 | ResultSet rs = c.s.executeQuery("select * from student"); 44 | table.setModel(DbUtils.resultSetToTableModel(rs)); 45 | } catch (Exception e) { 46 | e.printStackTrace(); 47 | } 48 | 49 | JScrollPane jsp = new JScrollPane(table); 50 | jsp.setBounds(0,100,900,500); 51 | add(jsp); 52 | 53 | 54 | //search button 55 | search = new JButton("Search"); 56 | search.setBounds(350,20,80,35); 57 | search.addActionListener(this); 58 | add(search); 59 | 60 | //search button 61 | exit = new JButton("Exit"); 62 | exit.setBounds(450,20,80,35); 63 | exit.addActionListener(this); 64 | add(exit); 65 | 66 | setSize(900,600); 67 | setLocation(250,100); 68 | setVisible(true); 69 | } 70 | 71 | 72 | public void actionPerformed(ActionEvent ae){ 73 | 74 | if(ae.getSource() == search){ 75 | String query = "select * from student where rollno = '"+crollno.getSelectedItem()+"'"; 76 | try { 77 | Conn c = new Conn(); 78 | ResultSet rs = c.s.executeQuery(query); 79 | table.setModel(DbUtils.resultSetToTableModel(rs)); 80 | } catch (Exception e) { 81 | e.printStackTrace(); 82 | } 83 | }else{ 84 | setVisible(false); 85 | } 86 | } 87 | 88 | public static void main(String[] args) { 89 | new StudDetails(); 90 | } 91 | 92 | } 93 | --------------------------------------------------------------------------------