May 27, 2025
Trending Now
  •    Registration with image upload Java Jdbc(Down...

  •    Touchable shop Pos system using Java...

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

  •    Java Beans...

  •    Java String Methods...

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
Home C#.net (page 4)

C#.net

Profit and CommissionCalculation using C#.net

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

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

Autocomplete Textbox using C#.net Sqlserver

By admin
March 16, 2021
in :  C#.net
0
927

This tutorial will teach you how make a Autocomplete Textbox using C#.net Sqlserver Database. First Step you have to make the GUI Design after that select the textbox and go to the Properties  do the couple of option i attached the screenshot image below.do the same what i attached below. Write the code inside the Form_Load Event  using System.Data.SqlClient; namespace …

Read More

Inheritance in C#.Net Core

By admin
January 26, 2021
in :  C#.net
0
503

This tutorial will teach you inheritance in C#.net Core step by step. First step  i have created the class Address. class has the properties HouseNo,Street,City. after that i have created the HouseAddress class which has a the properties HouseName after that i have created ShopAddress  class which has a the properties ShopName. inside the main method of the programme you …

Read More

How to make calculator in C#.net

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

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

How to Search Records using C#.net

By admin
October 2, 2020
in :  C#.net
0
663

This tutorial will teach you how to make the Search Records using C#.net step by step. if you enter the Account id on the textbox relavent matching record will be displayed  on the datagridview. Establish the database connection SqlConnection con = new SqlConnection("server=.;database=Bank; integrated security=true;"); Paste the code inside the find button SqlDataAdapter sh_adapter9; DataSet sh_dataset19; DataTable sh_table9; sh_adapter9 = …

Read More

Progress Bar using C#.net

By admin
July 30, 2020
in :  C#.net
0
548

This tutorial will teach you  how to make a  progress bar using C#.net step by step. drap the timer contral on form it will display on the component tray.double click the timer you can use the following code snippet to load the progressbar. paste the code inside the timer1_Tick Event. private void timer1_Tick(object sender, EventArgs e) { progressBar1.Value = progressBar1.Value …

Read More

Grocery Shop Inventory Using C#.net

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

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
804

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

Pharmacy Inventory Management System C#.Net

By admin
June 6, 2020
in :  C#.net
0
5,848

The Pharmacy Inventory Management System is developed using C#.net and microsoft sql server. The project is built to manage pharmacy items and transactions. To make a new transaction, fields such as: drag name, qty and payment needs to be selected. If you like to learn point of sales systems step by step, this is the right place to learn from …

Read More

Milk Inventory System C#.net with Print Receipt

By admin
June 5, 2020
in :  C#.net
0
1,920

The Milk Inventory Management System is developed using c#.net and sqlserver. The project is built to manage sales and transactions. To make a new transaction, fields such as: Milk type, qty,price and payment needs to be selected. If you like to learn point of sales systems step by step, this is the right place to learn from the beginning. In …

Read More
1...345Page 4 of 5

Recent Posts

  • Free GPT Chat? DeepSeek AI Does It Better
  • Spring Boot MySQL Complete CRUD REST API [ Free Sourecode ]
  • CREATE a Responsive Navigation Bar with FlexBox CSS!
  • Registration with image upload Java Jdbc(Download Source code)
  • Touchable shop Pos system using Java

© Copyright 2020, All Rights Reserved Powered by Tutussfunny