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 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 .

Programming Languages Ranking | Feb 2015 | JavaScript Greatest Performance

This is my second post along the blog speaking about programming languages ranking according to  TIOBE  for software quanlity. Before heading off to speak about the ranking, I would like to point out that this rank is based on the amount of searches and content availiable on the web for each programming language, You can read the full definition of TIOBE index  here .