Skip to main content

C# Full Pharmacy Project With Source code

Hello Geeks .. This post is one of our completely Free Projects .. It is a Pharmacy Project that can perform a lot of operations you can also find the (.dll) files for the working Barcode Reader Machines in your country and add it to the project .

Pharmacy Project Main Form

Steps to get the project working : 

  1. Create an SQLserver Database Then create two tables
    • Phar_Item_Info Then add this fields :
      • ID >> DataType : Int (Primary Key)
      • Class >> DataType : nvarchar(50)
      • Company >> nvarchar(50)
      • Type >> nvarchar(50)
      • Price >> money
      • Notes >> nvarchar(150)
    • LoginInfo With this fields :
      • ID >> DataType : Int (Primary Key)
      • Password >> nvarchar(50)

  2. Create a Stored Procedure and Implement this code inside it :
    ALTER PROCEDURE insert_Data @ID int,@Class nvarchar(50),@Company nvarchar(50),@Type nvarchar(50),@Price Money,@Notes nvarchar(150)
    /*
    (
    @parameter1 int = 5,
    @parameter2 datatype OUTPUT
    )
    */

    AS
    insert into Phar_Item_Info (ID,Class,Company,Type,Price,Notes) values(@ID,@Class,@Company,@Type,@Price,@Notes)
    /* SET NOCOUNT ON */
    RETURN

  3. Open The Project on Visual Studio then go to Class Connection.cs Then Edit the connection string to be the one suitable for your server.

  4. You can add a lot of improvements to this project such as the Barcode Reader , Charts for Inventory Level , Total Sales and much more ..

Download The Full Project For Free ( Media Fire)

Pharmacy Project Add Item Form


You May Also Read :

Comments

Popular posts from this blog

How To Create C# Chat Application

Hello Geeks .. Today I gonna show you How to make a Chat Application Using Microsoft C#.NET 5.0  . You Can Use Older Versions Since there is nothing special in the application that only belongs to C# 5.0 . This Application Was Created To Allow Two Computers To "Chat" Using IP Addresses Also you Can Open two Clients On The Same Computer and Use Same IP Address But Different Port.. It is simple and Easy to Use And Develop .. I also Uploaded The Full Working Project With It's Source Code On MediaFire.. You Will Find The Link At The End Of the Post :)

How To Create A Change Password Form in a C# Application

Hello Geeks .. This little post is a free sample C#  Windows Form that can be used to change password in a SQL Database .