August 18, 2025
Trending Now
  •    Build a Simple Water System Calculator in Java...

  •    Registration with image upload Java Jdbc(Down...

  •    Touchable shop Pos system using Java...

  •    Build Your First Responsive Login Form Using H...

  •    Java Beans...

Click Here to Buy Our Courses

  • Home
  • About Us
  • Java
    • Java for Beginners
    • Java Projects
    • Java Console Application Projects
  • C#.net
  • Angular
  • Reactjs
    • ReactJS Introduction
  • Node JS
  • Android Studio
  • Jsp
  • Servlet
  • python
    • Python for beginners
  • Spring boot
  • Laravel 8
  • Laravel 9
  • Asp.net MVC
  • php
  • Flutter
  • Free Projects
  • Contact us
  • Privacy Policy

Java JDBC Search using Mysql Database

By admin
July 8, 2020
in :  Java
0
4,113

This tutorial will teach you Jdbc Search step by step. Establish the database connection Connection con; PreparedStatement pst; public void Connect() { try { Class.forName("com.mysql.jdbc.Driver"); con = DriverManager.getConnection("jdbc:mysql://localhost/studcrud","root",""); } catch (ClassNotFoundException ex) { } catch (SQLException ex) { } The System Shall be able to search the record by entering the  relavent student id.paste the code inside the search button. …

Read More

Android Fish Shop Inventory App

By admin
July 7, 2020
in :  Android Studio
0
1,234

This tutorial will teach you  to make a small Fish shop Inventory  system using android studio. The following  app will use to manage the Fish shop.The app is developed steps ahead of the existing world. While app development will be very useful for the future as well.   We made the layout design activity_main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" …

Read More

JDBC Microsoft Sql server CRUD Step by Step

By admin
June 29, 2020
in :  Java
0
2,927

This JDBC will teach you how to do basic database functions that are CREATE RETIEVE UPDATE and DELETE. using microsoft sql server database. The INSERT, SELECT, UPDATE and DELETE statements can be used in any database system, because this is support by all relational database systems. We will learn how to INSERT, SELECT, UPDATE and DELETE in database by writing …

Read More

Add two numbers using Java

By admin
June 29, 2020
in :  Java
0
641

This tutorial will teach you Input two numbers to calculate and display the total.   paste the code inside the + button int Num1 = Integer.parseInt(txtNum1.getText()); int Num2 = Integer.parseInt(txtNum2.getText()); int tot = Num1 + Num2; txtTotal.setText(String.valueOf(tot)); paste the code inside the – button int Num1 = Integer.parseInt(txtNum1.getText()); int Num2 = Integer.parseInt(txtNum2.getText()); int tot = Num1 - Num2; txtTotal.setText(String.valueOf(tot)); paste …

Read More

Student MarksCalculation System Using Java

By admin
June 29, 2020
in :  Java
0
906

This tutorial will teach you Student MarksCalculation System Using Java.Input the studentname and marks to calculating the total,grade. the grade is awared as “Pass” when the average is more than 50.otherwise grade is fail. paste the code inside the ok button int num1,num2,num3,tot,avg; num1 = Integer.parseInt(txtnum1.getText()); num2 = Integer.parseInt(txtnum2.getText()); num3 = Integer.parseInt(txtnum3.getText()); tot = num1 + num2 + num3; avg …

Read More

Employee Salary Calculation using Java Swing

By admin
June 29, 2020
in :  Java
0
1,039

This tutorial will teach you  to calculating the employee salary calculation using java .This type of projects java is so imponent those who want to be good java developer. You must get java project ideas here. Features of the Project Input the employee name and the basic salary calculate and display the netsalary using following condition if the basic salary …

Read More

Advance Bus Ticket Booking System in Java Mysql

By admin
June 29, 2020
in :  Java
0
6,645

This tutorial will teach you Advanced Bus Booking System step by step.This system will use to manage the Bus Booking System. The System shall be able to select the seat no which customer wants. Step 1: implement  MouseListener  public class pos extends javax.swing.JFrame implements MouseListener { Step 2:  set the addMouseListener(this) in to each label.  write it inside the constructor. lbl1.addMouseListener(this); …

Read More

Passing Data One JFrame to Another Using Java

By admin
June 29, 2020
in :  Java
0
2,529

This tutorial will teach you  how to send the data from one jframe to another Using java.data will be displayed on the second jframe.in the example i am going to teach add two number to calculating the total.the total will be displayed on the second jframe. paste the code inside the send button int num1,num2,tot; num1 = Integer.parseInt(txtno1.getText()); num2 = …

Read More

Grocery Shop Inventory Using C#.net

By admin
June 25, 2020
in :  C#.net
0
1,745

This tutorial will teach you  to make a small shop Grocery Shop Inventory management system in C#.Net.how make a system.in in c#.net step by step. The following  system will use to manage the Grocery Shop sales calculation. If you are an interested in pos in c#.net this is the right place where you will able learn inventory management system c#.net …

Read More

Fish inventory system using C#.net

By admin
June 24, 2020
in :  C#.net
0
814

This tutorial will teach you  to make a small Fish shop Inventory  system using c#.net. The following  system will use to manage the Fish shop. paste the code inside the ok button string status = txtstatus.SelectedItem.ToString(); double qty = double.Parse(txtqty.Text); if(status.Equals("KG")) { double tot = qty * 140; txtbill.Text = tot.ToString(); } else { double tot = qty/1000 * 140; …

Read More
1...464748...50Page 47 of 50

Recent Posts

  • Build a Simple Water System Calculator in Java Using Swing
  • GitHub Copilot vs Microsoft Copilot Best AI Tool to Use in 2025
  • Chat with Claude AI Free – Your Super-Smart AI Buddy
  • Best Festivals UK 2025 [Free Guide Included]
  • Bank Holidays 2025 UK – Plan Your Perfect Long Weekends

© Copyright 2020, All Rights Reserved Powered by Tutussfunny