0% found this document useful (0 votes)
58 views

Gad Final PDF With Updates

This document contains an index and outlines for a hotel management system project proposal and report. The proposal includes the aim to develop a hotel management system to better policies, food quality, and accuracy. The methodology proposes using file handling and VB.net. The report rationale is to manage hotel, customer, room, and booking details. It achieved learning outcomes around GUI applications and object-oriented concepts using Visual Studio. The project uses various controls like labels, buttons, and tables to design the hotel management system.

Uploaded by

Ganesh More
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
58 views

Gad Final PDF With Updates

This document contains an index and outlines for a hotel management system project proposal and report. The proposal includes the aim to develop a hotel management system to better policies, food quality, and accuracy. The methodology proposes using file handling and VB.net. The report rationale is to manage hotel, customer, room, and booking details. It achieved learning outcomes around GUI applications and object-oriented concepts using Visual Studio. The project uses various controls like labels, buttons, and tables to design the hotel management system.

Uploaded by

Ganesh More
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

Index

Sr. No. Contents Page No.

Part A – Micro Project Proposal 1-3

1.Aim of the Micro-Project 1

1 2. Course Outcome Addressed 1

3.Proposed Methodology 1

4. Action Plan 2

5. Resources Required 3

Part B – Micro Project Report 3-20

1.Rationale 3

2.Aim of the Micro-Project 3

3.Course Outcome Achieved 3

4. Literature Review 4

2 5.1Actual Methodology Followed 5

5.2flow chart 5

5.3source code 6-8

6.Actual Resources Used 9

7.output of micro project 9-10

8. Skill developed / Learning out of the Micro-Project 11

9. applications 11

0|Page
Part A – Plan

Micro-Project
Hotel Management System

1. Aim of the Micro-Project

• To develop a hotel management system ,this can take better policy.


• to provide a better quality of foods.
• To maintain the quality of foods.
• It provides accuracy

2. Course Outcome Addressed:

• Develop GUI Application using Form Controls and its Events.


• Apply Object Oriented concepts in GUI Application.
• Use Visual Studio IDE to design application.

3. Proposed Methodology :

Hotel management system project offers various services. It maintains records of all the
customers. We can also book rooms in advance and Discounts can be done through this VB.net project.
We can monitor available rooms in the hotel.

In this contact list project in .Net, file handling has been used for almost all function.

1|Page
4 Action Plan

Sr. Planned Planned Name of Responsible


No. Details of Activity Start date Finish date Team Members
1 Finalize project topic 07/03/2022 10/03/2022 Pranav Sudhir
Hydrabade
2 search the information 14/03/2022 17/03/2022 Pranav Sudhir
Hydrabade

3 Design the data flow 21/03/2022 24/03/2022 Pratik Tanaji Bevnale


diagram of project

4 Algorithm developing 28/03/2022 31/03/2022 Ganesh Vishwantth


More

5 function making 05/04/2022 07/04/2022 Pratik Tanaji Bevnale

6 Coding developing 12/04/2022 19/04/2021 Ganesh Vishwantth


More

7 correct the error and 21/04/2022 26/04/2022 Pratik Tanaji Bevnale


check the coding output
8 finalize project with its 28/04/2022 03/05/2022 Pranav Sudhir
report Hydrabade

2|Page
5.Resources Required :

Sr.
No. Name of resource / material Specification Quantity Remarks

1 Computer WINDOWS 7,2GB 1


RAM, 160GB HDD
2 Operating System WINDOWS 7 1
3 Compiler Visual studio 2017 1
4 Browser Chrome 1

Names of team members with roll no’s:


Sr.no Enrollment no. Name of team member Roll no.
1 2010950139 Pranav Sudhir Hydrabade 63
2 2010950198 Pratik Tanaji Bevnale 66
3 2010950104 Ganesh Vishwantth More 28

Name And Signature Of The Teacher

Ms. Deb.S

3|Page
Annexure – II A
Part B Hotel Management System

1.0 Rationale:

The main objective of the VB.Net Project on Hotel Management System is to manage the
details of Hotel, Customers, Rooms, Booking, Services. It manages all the information
about Hotel, Payments, Services, Hotel. ... It tracks all the details about the Rooms,
Booking, Services

2.0Aim of the Micro-Project :

• To develop a hotel management system ,this can take better policy.


• to provide a better quality of foods.
• To maintain the quality of foods.
• It provides accuracy

3.0 Course Outcomes Achieved :

• Develop GUI Application using Form Controls and its Events.

• Apply Object Oriented concepts in GUI Application.

• Use Visual Studio IDE to design application.

4.0 Literature Review :

Go to the Toolbox tab (located on the left side of the Visual Studio IDE) and expand the
Common Controls group.

Choose the TableLayoutPanel control on the form.


Double-click the Picture Box item to add a PictureBox control to your form.

5.1Actual Methodology Followed:

4|Page
This project is focused on hotel management system, so it is named “hotel management
system design”.

Here, you can create a new hotel management system, in this you can use the different labels,
buttons in the toolbox in.net.

Overall, with this project, you can show hotel management system of anybody help of “hotel
management system”.

5.2Flowchart:

5.3 Source code:

Private Sub ButtonLogin_Click(sender As Object, e As EventArgs) Handles


ButtonLogin.Click

5|Page
Dim connection As New CONNECTION()
Dim adapter As New MySqlDataAdapter()
Dim command As New MySqlCommand()
Dim table As New DataTable()
Dim username As String = TextBoxUsername.Text
Dim password As String = TextBoxPassword.Text
Dim selectQuery As String = "SELECT * FROM `users` WHERE `username`=@un
AND `password`=@pass"

command.CommandText = selectQuery
command.Connection = connection.getConnection()

command.Parameters.Add("@un", MySqlDbType.VarChar).Value = username


command.Parameters.Add("@pass", MySqlDbType.VarChar).Value = password

adapter.SelectCommand = command
adapter.Fill(table)

If table.Rows.Count > 0 Then

Dim mainForm As New MainForm()


mainForm.Show()
Me.Hide()

Else

MessageBox.Show("Invalid Username Or Password", "Login Error",


MessageBoxButtons.OK, MessageBoxIcon.Error)

End If

End Sub

Private Sub LabelMClients_Click(sender As Object, e As EventArgs) Handles


LabelMClients.Click

Dim manage_Cl_Form As New ManageClientsForm()


manage_Cl_Form.ShowDialog()

End Sub
Private Sub LabelMRooms_Click(sender As Object, e As EventArgs) Handles

LabelMRooms.Click

Dim manage_Rm_Form As New ManageRoomsForm()


manage_Rm_Form.ShowDialog()

6|Page
End Sub

Private Sub LabelMReservastions_Click(sender As Object, e As EventArgs) Handles


LabelMReservastions.Click

Dim manage_Rv_Form As New ManageReservationsForm()


manage_Rv_Form.ShowDialog()

End Sub

Private Sub ButtonAdd_Click(sender As Object, e As EventArgs) Handles ButtonAdd.Click

Dim fname As String = TextBoxFname.Text


Dim lname As String = TextBoxLname.Text
Dim phone As String = TextBoxPhone.Text
Dim email As String = TextBoxEmail.Text

If fname.Trim().Equals("") Or lname.Trim().Equals("") Or phone.Trim().Equals("") Then

MessageBox.Show("Required First & Last Name, Phone", "Missing Information",


MessageBoxButtons.OK, MessageBoxIcon.Error)

Else

If client.addClient(fname, lname, phone, email) Then

MessageBox.Show("New Client Added Successfully", "Add Client",


MessageBoxButtons.OK, MessageBoxIcon.Information)
DataGridView1.DataSource = client.getAllClients()

Else

MessageBox.Show("Client Not Added", "Add Client", MessageBoxButtons.OK,


MessageBoxIcon.Warning)

End If

End If

End If

End
Private Sub ButtonEdit_Click(sender As Object, e As EventArgs) Handles ButtonEdit.Click
Dim fname As String = TextBoxFname.Text
Dim lname As String = TextBoxLname.Text

7|Page
Dim phone As String = TextBoxPhone.Text
Dim email As String = TextBoxEmail.Text

If TextBoxId.Text.Trim().Equals("") Then

MessageBox.Show("Select The User You Want to Edit", "Missing ID",


MessageBoxButtons.OK, MessageBoxIcon.Error)

Else

If fname.Trim().Equals("") Or lname.Trim().Equals("") Or phone.Trim().Equals("")


Then

MessageBox.Show("Required First & Last Name, Phone", "Missing Information",


MessageBoxButtons.OK, MessageBoxIcon.Error)

Else

Dim id As Integer = Convert.ToInt32(TextBoxId.Text)

If client.editClient(id, fname, lname, phone, email) Then

MessageBox.Show("Client Updated Successfully", "Edit Client",


MessageBoxButtons.OK, MessageBoxIcon.Information)
DataGridView1.DataSource = client.getAllClients()

Else

MessageBox.Show("Client Not Updated", "Edit Client",


MessageBoxButtons.OK, MessageBoxIcon.Warning)

End If

End If
End If

End Sub

8|Page
6.Actual Resources Used:

Sr. Name of resource /


No. material Specification Quantity Remarks

1 Computer WINDOWS 7,2GB 1


RAM, 160GB HDD
2 Operating System WINDOWS 7 1
3 Compiler Visual studio 2017 1
4 Browser Chrome 1

7.Output of the Micro-Project:

9|Page
8.Skill developed / Learning out of the Micro-Project :

10 | P a g e
There are so many thing that we learn from this project of

• We learn that how to make the project in Visual Studio 2017.

• How to do the testing of program in Visual Studio 2017.

• How to collect the information and how to make the presentation that we learn from
this project.

• We develop our logic implementation for coding.

• This all thing we learn from this project

9.Application:

• Used to hotel management system for give quality foods.

*********

********

11 | P a g e

You might also like