Skip to content

Pharmacy Management ๐Ÿ’Š A static desktop application built using C# And Database designed for managing pharmacy operations. It features multiple modules to handle various aspects of pharmacy management, including agent management, billing, medicine tracking, and manufacturer records.

Notifications You must be signed in to change notification settings

OmarrSakr/Pharmacy-Management

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

36 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Screenshots

Screenshot 1 Screenshot 3 Screenshot 4 Screenshot 5 Screenshot 6 Screenshot 7 Screenshot 8 Screenshot 9 Screenshot 10

Pharmacy Management ( C# ) ๐Ÿ’Š

A static desktop application built using C#, designed for managing pharmacy operations. It features multiple modules to handle various aspects of pharmacy management, including Employees management, billing, medicine tracking, and Companies records.

๐Ÿ›  Technologies Used:

  • C# (Windows Forms) for building the user interface and implementing the business logic.
  • File Handling for saving and retrieving data using .txt files.

๐Ÿ’ก How to Run the Project

  1. Open the project in Visual Studio Program .
  2. Compile and run the application.
  3. โš Important: Ensure that the project is placed in the same directory as your database connection file for the application to connect to the database properly.
  • This is the database connection string๐Ÿ‘‡:
    public SqlConnection con = new SqlConnection(@"Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=E:\PROJECT_OOP\FO_ORGANIZATION\PHARMACY-MANAGEMENT\PROJECT_FO_3\PHARMACYOB.MDF;Integrated Security=True;");
    

๐Ÿ“‚ Features:

1. Agent Management

  • Add, search, edit, and manage agent details with ease.
  • Maintain comprehensive records to streamline operations.

2. Billing Module

  • Record customer transactions accurately.
  • Generate detailed bills for enhanced financial tracking.

3. Medicine Inventory Management

  • Track available stock and manage inventory efficiently.
  • Monitor medicine details, including batch, expiry, and pricing.

4. Manufacturer Management

  • Maintain detailed records of manufacturers.
  • Simplify tracking and communication with suppliers.

โš  Current Status:

  • This project is currently functional but relies on a database. The UI is responsive and designed primarily for desktop usage.

๐Ÿ”‘ Login Information:

  • Username: admin
  • Password: 123

โš  Important Notice: If any attempt is made to change the username or password in the code, a warning message will appear. This helps ensure system security by preventing unauthorized modifications to login credentials. Below is an example of how the warning message is implemented:

 //for save data in your file
   string filename = @"E:\Project_OOP\FO_organization\Pharmacy-Management\savedLogin.txt";   // ุงุณุชุฎุฏุงู… using ู„ุถู…ุงู† ุฅุบู„ุงู‚ ุงู„ู…ูˆุงุฑุฏ ุชู„ู‚ุงุฆูŠู‹ุง
  using (FileStream myfile = new FileStream(filename, FileMode.OpenOrCreate, FileAccess.Write))
 {
   using (StreamWriter sw = new StreamWriter(myfile))
   {
      sw.WriteLine($"username: {username.Text}\t password:{password.Text}");
   }
}
 //MessageBox.Show("Your data has been saved");
 if (name == "admin" && pass == "123")
 {
     Hide();
     Home basic = new Home();
     basic.ShowDialog();
 }
 else
 {
    MessageBox.Show("Error,your Username or Password is incorrect");
    username.Text = password.Text = null;
 }
}
  

๐Ÿ’ก How to Disable the Warning Message: To disable the warning message or modify the login credentials, you can update them directly in the code. Below is where the username and password are hardcoded:

// Example of where login credentials are set
string username = "admin";
string password = "123";

If you need to change the credentials, simply update the username and password variables in the code. Make sure to test the program after making changes to ensure proper functionality.


How to Use ๐Ÿš€

We welcome contributions to Pharmacy Management! Hereโ€™s how you can help:

  1. Fork the repository - Click the "Fork" button at the top right of the repository page.

  2. Clone your fork - Use the command:

     https://github.com/OmarrSakr/Pharmacy-Management.git
    

๐Ÿ”„ Future Enhancements:

  • User Authentication System for secure access to the application.
  • Responsive UI with potential dark mode support for improved user experience.
  • This project demonstrates how C# Windows Forms can be used for building structured and efficient pharmacy management systems, with easy data handling and modular design.

About

Pharmacy Management ๐Ÿ’Š A static desktop application built using C# And Database designed for managing pharmacy operations. It features multiple modules to handle various aspects of pharmacy management, including agent management, billing, medicine tracking, and manufacturer records.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages