Hospital Management System

Purpose: The hospital has general wards, private rooms and special wards. it has eminent consultants in general medicine, general surgery, cardiology, orthopedics,gynecology, ophthalmology, ent, plastic surgery and pediatrics. consultants visit regularly and on request they are on service during emergencies.

Proposed system: It is proposed to bring out the package using visual basic 6.0 as front end and ms_access as the back end.er details are stored etc. This web based product is designed to addresses the critical requirements of health care system. This project enables better patient care, patient safety, and efficiency. This software is for hospitals and health care organizations. It is designed to integrate the different information systems existing in these organizations into one single efficient system. This project will support multi location implementation, wherein the hospital has Outpatient, Inpatient and other services in many physical locations. This project provides enquiries about the patient, the patient's location, admission, and appointment scheduling, treatment details, patientâ„¢s case history and discharge details with bill. Medical Record such as case history of the patient keeps an abstract of clinical data about patients. It allows easy retrieval of medical records on patients.

Patient care: 

Patient care is the focus of many clinical disciplines. 
Various disciplines sometimes overlaps. 
Each has its own primary focus, emphasis, and methods of care delivery. 
Each discipline’s work is complex
Collaboration among disciplines adds complexity.

In all disciplines, the quality of clinical decisions depends in part on the quality of information available to the decision-maker.

Care Process:

-Care begins with collecting data and assessing the patient’s current status
-Through cognitive processes specific to the discipline:
-Diagnostic labels are applied,
-Therapeutic goals are identified with timelines for evaluation, and
-Therapeutic interventions are selected and implemented

At specified intervals:

-Patient is reassessed,
-Effectiveness of care is evaluated, and
-Therapeutic goals and interventions are continued or adjusted as needed
-If the reassessment shows that the patient no longer needs care, services are terminated

Discipline in patient care:

-Patient care is a multidisciplinary process centered on the care recipient in the context of the family, significant others, and community.
-Information to Support Patient Care
-The information for direct patient care is defined in the answers to the following questions:

Who is involved in the care of the patient?

What information does each professional require to make decisions?

From where, when, and in what form does the information come?

What information does each professional generate? Where, when, and in what form is it needed?

VISUAL BASIC is a high level programming language which evolved from the earlier DOS version called BASIC. BASIC means Beginners' All-purpose Symbolic Instruction Code. It is a very easy programming language to learn. The code look a lot like English Language. Different software companies produced different versions of BASIC, such as Microsoft QBASIC, QUICKBASIC, GWBASIC ,IBM BASICA and so on. However, people prefer to use Microsoft Visual Basic today, as it is a well developed programming language and supporting resources are available everywhere. Now, there are many versions of VB exist in the market, the most popular one and still widely used by many VB programmers is none other than Visual Basic 6. We also have VB.net, VB2005 and the latest VB2008, which is a fully object oriented programming (OOP) language. It is more powerful than VB6 but looks more complicated to master. 

VISUAL BASIC is a VISUAL and events driven Programming Language. These are the main divergence from the old BASIC. In BASIC, programming is done in a text-only environment and the program is executed sequentially. In VB, programming is done in a graphical environment. In the old BASIC, you have to write program code for each graphical object you wish to display it on screen, including its position and its color. However, In VB , you just need to drag and drop any graphical object anywhere on the form, and you can change its color any time using the properties windows. On the other hand, because the user may click on a certain object randomly, so each object has to be programmed independently to be able to response to those actions (events). Therefore, a VB Program is made up of many subprograms, each has its own program code, and each can be executed independently and at the same time each can be linked together in one way or another.

What programs can you create with Visual Basic 6?

With VB 6, you can create any program depending on your objective. For example, if you are a college or university lecturer, you can create educational programs to teach business, economics, engineering, computer science, accountancy , financial management, information system and more to make teaching more effective and interesting. If you are in business, you can also create business programs such as inventory management system , point-of-sale system, payroll system, financial program as well as accounting program to help manage your business and increase productivity. For those of you who like games and working as games programmer, you can create those programs as well. Indeed, there is no limit to what program you can create ! There are many such programs in this tutorial, so you must spend more time on the tutorial in order to learn how to create those programs.

Visual Basic (VB) is the third-generation event-driven programming language and integrated development environment (IDE) from Microsoft for its COM programming model. Visual Basic is relatively easy to learn and use. Visual Basic was derived from BASIC and enables the rapid application development (RAD) of graphical user interface (GUI) applications, access to databases using Data Access Objects, Remote Data Objects, or ActiveX Data Objects, and creation of ActiveX controls and objects. Scripting languages such as VBA and VBScript are syntactically similar to Visual Basic, but perform differently. A programmer can put together an application using the components provided with Visual Basic itself. Programs written in Visual Basic can also use the Windows API, but doing so requires external function declarations. The final release was version 6 in 1998. Microsoft's extended support ended in March 2008 and the designated successor was Visual Basic .NET (now known simply as Visual Basic).

Dot net is a collection of technologies, which is used to integrate many small technologies to a single large technology such that a powerful application can be, designed which can be used from anywhere anytime.

CLS: - it is a set of rules, which is given by .net technology, which has to be followed by any .net language. It is not mandatory for any lang. To support all the rules supported by the CLS. But the language has to support the features provided by the CTS, which will be used by the CLS for its verification.

Common Type System: - it is a collection of type definitions provided by the .net framework, which has to be used by the languages, which targets .net

Note: all the languages have to support the CTS type definitions.

If any language supports a data type, which is not supported by, the CTS type definitions then that language should not use that data type if the application targets to .net

Windows forms: - they are used to design desktop applications

Asp.net: asp.net is used to design 2 types of applications

Web forms: used to design web applications 
Web services - it is a set of instructions or a code which can be placed on the web which can be accessed by any applications written using any language for any platform or device.

Mobile forms: - used to design the device independent applications.

ADO.Net -> it is a new database connectivity model based on the namespaces to interact with any databases or XML.

Base Class Libraries - it is a rich class libraries provided by the .net framework which can be used by any language which targets .net 
This is like header file in C.

In java u have more than 2000 packages in .net you have more than 4000 packages and the advantage is can be used by any language. 

Base Class Library support -> it is a resource used by the CLR in order to load the class definitions of the assemblies used by the application.

Type definitions: it is a resource used by the CLR in order to verify the type definitions used by the application

To achieve this CLR will take the support of the CLS 

CLS: is a specification provided by the .net framework, which has to be supported or implemented by any language if it targets to the .net tech.

Note it is not mandatory for any lang. Which targets the .net Tech to support all the rules given by the CLS. In order to verify the type definitions the CLS will take support of CTS.

CTS: is a collection of type definitions provided by the .net tech.

COM Marshalling: - it is a resource used by the CLR whenever the COM interoperability takes place. This means that using the COM components in .net or .net components in COM type application.

Debug manager: It is a resource used by the CLR if any runtime error occurs to invoke the debugger such that code can be modified as per the requirement which allows to continue the processing of the application without terminating it.

Exception Manager: it is a resource used by the CLR to handle exceptions raised by the application. Provided we write the exception handling statements ie defined .if they r not handled then this resource is used to terminate the process of the application abruptly.

Security Engine: it is a resource used by the CLR to provide the access controllers to verify the security of the application.

Thread Support: Whenever the .net application uses multi-threading concept then the resources for those threads and handling of those threads will be taken care by this.

IL to native:- it is a just in time compilation process which converts the MSIL instructions to the native code of the OS.

Standard JIT: it is used to compile the entire MSIL instructions to the native code of the OS.

Echo Jit: when ever a method is been invoked then the relevant MSIL instruction will be converted into the native code of the OS.

Pre JIT: it is a process of identifying the system resource to invoke the relevant JIT compiler as per the requirement.

Code Manager: it is a resource used by the CLR to manage the code present in the application like threading, exceptions.

Garbage collector:  It is a resource used by the CLR in order to destroy the unused objects on a periodical basis such that the resources occupied by the unused objects will be released.


Download Hospital Management System