Hospital Management System

Umang Patel
3 min readJul 22, 2021

--

Introduction

The Hospital Management System (HMS) is designed for Any Hospital to replace their existing manual, paper based system. The new system is to control the following information; patient information, Doctor information and patient invoices. These services are to be provided in an efficient, cost effective manner, with the goal of reducing the time and resources currently required for such tasks.

A significant part of the operation of any hospital involves the acquisition, management and timely retrieval of great volumes of information. This information typically involves; patient personal information, doctor information and medical history. All of this information must be managed in an efficient and cost wise fashion so that an institution’s resources may be effectively utilized HMS will automate the management of the hospital making it more efficient and error free.

SOFTWARE REQUIREMENTS :

1) Operating System — Windows 10

2) IDE — Visual Studio 2010

3) Database — Microsoft SQL Server 2017

Front End — C#.NET

It is one of the most popular programming languages in the world. It is easy to learn and simple to use. It has a huge community support.

Back End — Microsoft SQL Server

Microsoft SQL Server is a relational Database management system (RDBMS) developed by Microsoft. This product is built for the basic function of storing retrieving data as required by other application.

The Application starts with a nice looking splash form which leads to a login form. The login form will be connected to a database, if the user id and password match the database entries, the user will login to the main form.

Login Form

Only Registered doctors can login this Application . After login, Doctor will redirect to Home page that contains Patient information, Doctor Information, and diagnosis form

Home Page

Doctor Form:

From Doctor Page user can add, edit, delete and view Doctors working in the hospital. This page contains Add, Update, Delete and Home buttons. This page store and Show information of DoctorsId, Doctor Name, Experience and Password

Doctor Form

Patient Form

This Page consists Patient’s information such as Name, Address, Phone Number, Age, Gender, Blood Group and Disease. user can also edit, add and delete data.

Patient Form

Diagnosis Form

This page is more important . It contains all the information of Patient with Diagnosis. User can check patient data like Patient name, Symptons, Diagnosis and Medicine. he/she can update and delete data of Patient also.

Diagnosis Form

For storing all the data i used Mysql Server and create Separate databases for all the Pages…

--

--