November 24, 2023
Trending Now
  •    Mastering Object-Oriented Programming Project ...

  •    Inventory System using Java...

  •    what is Relational Database Management System...

  •    Java Scanner Class...

  •    JavaFx Money Counter Calculator App...

Click Here to Download the Tutusfunny Programming App

  • 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
Home Tag Archives: C#.net projects

Tag Archives: C#.net projects

Chicken Shop Inventory Management using C#.net

By admin
September 4, 2021
in :  C#.net
0
401

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

Read More

Profit and CommissionCalculation using C#.net

By admin
April 1, 2021
in :  C#.net
0
559

This tutorial will teach you Profit and Commission Calculation using C#.net.while calculating the commission from the profit include 1% commission. Paste the code inside the ok button private void button1_Click(object sender, EventArgs e) { double buyprice = double.Parse(txtBprice.Text); double sellprice = double.Parse(txtSprice.Text); //Profit double tot = sellprice - buyprice; txtProfit.Text = tot.ToString(); //Commission double comm = tot * 1/100; txtComm.Text …

Read More

How to make calculator in C#.net

By admin
October 28, 2020
in :  C#.net
0
728

This tutorial will teach you how to make a + calculator in C#.net step by step. private void txtone_Click(object sender, EventArgs e) { txtans.Text = txtans.Text + txtone.Text; } private void txttwo_Click(object sender, EventArgs e) { txtans.Text = txtans.Text + txttwo.Text; } private void txtthree_Click(object sender, EventArgs e) { txtans.Text = txtans.Text + txtthree.Text; } private void txtfour_Click(object sender, EventArgs …

Read More

Fish inventory system using C#.net

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

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

Download Tutusfunny Programming App

Recent Posts

  • Mastering Object-Oriented Programming Project in Java
  • Inventory Management System React Step by Step
  • How to Create a Calculator in Node js
  • Node js Basic 3 Projects
  • Inventory System using Java

© Copyright 2020, All Rights Reserved Powered by Tutussfunny