Gad Report With Outputs
Gad Report With Outputs
Certificate
This is to certify that Ms. Misba Panjabi Roll no. 220438
of fourth semester of Diploma in Computer Engineering of
institute M.H. SabooSiddik Polytechnic(code: 0002) has
completed microproject satisfactorily in the subject: GAD
(22034) for the academic year 2023-24 as prescribed in the
curriculum.
SEAL OF
INSTITUDE
MAHARASHTRA STATE
BOARD OF TECHNICAL EDUCATION
Certificate
This is to certify that Ms. Iqra Quereshi Roll no. 220441
of fourth semester of Diploma in Computer Engineering of
institute M.H. SabooSiddik Polytechnic(code:0002) has
completed microproject satisfactorily in the subject: GAD
(22034) for the academic year 2023-24 as prescribed in the
curriculum.
SEAL OF
INSTITUDE
MAHARASHTRA STATE
BOARD OF TECHNICAL EDUCATION
Certificate
This is to certify that Ms. Sakshi Rale Roll no. 220443 of
fourth semester of Diploma in Computer Engineering of
institute M.H. SabooSiddik Polytechnic(code:0002) has
completed microproject satisfactorily in the subject: GAD
(22034) for the academic year 2023-24 as prescribed in the
curriculum.
SEAL OF
INSTITUDE
MAHARASHTRA STATE
BOARD OF TECHNICAL EDUCATION
Certificate
This is to certify that Ms. Maria Sayed Roll no. 220445of
fourth semester of Diploma in Computer Engineering of
institute M.H. SabooSiddik Polytechnic(code:0002) has
completed microproject satisfactorily in the subject: GAD
(22034) for the academic year 2023-24 as prescribed in the
curriculum.
SEAL OF
INSTITUDE
MAHARASHTRA STATE
BOARD OF TECHNICAL EDUCATION
Certificate
This is to certify that Ms. Aafiya Sayyed Roll no.
220446 of fourth semester of Diploma in Computer
Engineering of institute M.H. SabooSiddik
Polytechnic(code:0002) has completed microproject
satisfactorily in the subject: GAD (22034) for the
academic year 2023-24 as prescribed in the curriculum.
SEAL OF
INSTITUDE
Acknowledgment
We wish to express our profound gratitude to our guide Ms. Kousar Akumalla
Ma’am who guided us endlessly in the framing and completion of the micro
project. She guided us on all the main points in that micro project. We are
indebted to his/her constant encouragement, cooperation, and help. It was
his/her enthusiastic support that helped us in overcoming various obstacles in
the micro-project.
We are also thankful to our Principal, HOD, faculty members and classmates of
Computer Engineering department for extending their support and motivation in
the completion of this micro-project.
1.PanjabiMisbaMohd.Shafi 220438
2.QureshiIqraAnees 220441
3.SakshiNavnathRale 220443
4.SayedMariaImran 220445
5.SayyedAafiyaIsmail 220446
Annexure-I
Microproject proposal
Title of microproject: Hotel Management System
I. Aims/Benefits of microproject
As technology continues its rapid advance across all industries around the world,
hospitality is really beginning to see the benefits. Hotel management software has
come a long way in helping hoteliers improve the way their business operates, and
there is little doubt as to its transformative impact. There are countless advantages to a
reliable hotel management software system. Whether it’s time saving on manual tasks
or increasing direct bookings, every element of a hospitality system should be
working towards the end goals of improving efficiency and enhancing the guest
experience.
Planned Planned
Week Name of responsible
Details of activity start finish
s team members
date date
12 Preparation of the project report (Annexure II) 29/3/24 31/3/24 Sakshi,iqra ,misba,m
aria,aafiya
Name of
Sr. no. Specifications Qty
resources Remarks
Learning resources and -
1. Online 4 sites
various websites
Microsoft word, Tools with -
2. Desktop 1 for each
internet facility.
Visual Studio 2022,SQL -
3. Software 1 for each
Sever Database
1.PanjabiMisbaMohd.Shafi 220438
2.QureshiIqraAnees 220441
3.SakshiNavnathRale 220443
4.SayedMariaImran 220445
5.SayyedAafiyaIsmail 220446
Approved by
Sign of Faculty:
Nameof facultyMs. Kousar Akumalla Maam
Annexure-II
Microproject Report
Title of Micro-project: E-CAKE SHOP
I. Rationale
The purpose of the e-cake shop project for students is to provide hands-on
learning, skill development, project management experience, domain
understanding, creativity and innovation opportunities, collaborative learning,
professional development, and presentation skills enhancement.
Error provider:
ErrorProvider allows us to set an error message for any
control on the form when the input is not valid. When an
error message is set, an icon indicating the error will
appear next to the control and the error message is
displayed as Tool Tip when the mouse is over the control.
Msgbox:
The MsgBox function displays a message in a dialog
box, waits for the user to click a button.
Textbox:
Text box controls allow entering text on a form at
runtime. By default, it takes a single line of text,
however, you can make it accept multiple texts and
even add scroll bars to it.
Label:
The Label control represents a standard Windows
label. It is generally used to display some informative
text on the GUI which is not changed during runtime.
Panel:
Windows Forms Panel controls are used to provide an
identifiable grouping for other controls.
Radio button:
The RadioButton is used to select one option from
the number of choices.
Picture Box:
The PictureBox control is used for displaying images
on the form.
Combo box:
The ComboBox control is used to display more than
one item in a drop-down list.
List box:
The ListBox represents a Windows control to display
a list of items to a user.
Data grid:
The DataGridView control provides a powerful and
flexible way to display data in a tabular format.
Difference between combo-box &list-box
CODE:
Public Class Form2
End Sub
End Sub
End Sub
Private Sub ComboBox1_SelectedIndexChanged(sender As Object, e As EventArgs)
Handles ComboBox1.SelectedIndexChanged
End Sub
End Sub
Private Sub custmenu_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
End Sub
End Class
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Me.Hide()
custmenu.Show()
End Sub
If CheckBox1.Checked Then
billAmount += 350
End If
If CheckBox2.Checked Then
billAmount += 200
End If
If CheckBox3.Checked Then
billAmount += 300
End If
If CheckBox4.Checked Then
billAmount += 500
End If
If CheckBox5.Checked Then
billAmount += 500
End If
If CheckBox6.Checked Then
billAmount += 600
End If
If CheckBox7.Checked Then
billAmount += 450
End If
If CheckBox8.Checked Then
billAmount += 500
End If
End Sub
End Class
Public Class minid
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Dim billAmount As Integer = 0
If CheckBox1.Checked Then
billAmount += 100
End If
If CheckBox2.Checked Then
billAmount += 100
End If
If CheckBox3.Checked Then
billAmount += 70
End If
If CheckBox4.Checked Then
billAmount += 150
End If
If CheckBox5.Checked Then
billAmount += 90
End If
End Sub
End Class
Public Class adminlog
End Sub
Private Sub adminlog_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
End Class
Public Class admenu3
Sub childform1(ByVal panel As Form)
Panel1.Controls.Clear()
panel.TopLevel = False
Panel1.Controls.Add(panel)
Panel1.Show()
End Sub
Private Sub admenu3_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
End Sub