Download as pdf or txt
Download as pdf or txt
You are on page 1of 12

[2022-2023]

Program Name and Code: CO-4-I Academic Year: 2022-2023


Course Name and Code: GAD (22034)
Semester: Fourth

MICRO PROJECT REPORT


ON
Railway Reservation Management System
Roll No. Name Enrollment
(SEM-IV) No.
23 Saksham Milind Ingle 2100210090
26 Aditya Dnyaneshwar Kale 2100210093
47 Dhanesh Dinesh Shingade 2100210116
57 Sarvesh Vishnu Warule 2100210126

Under the Guidance of


Prof. R. D. Tayade
In
Three Years Diploma Programme in Computer Engineering of
Maharashtra State Board of Technical Education, Mumbai
(Autonomous)
ISO 9001:2015 (ISO/IEC-27001:2013)
At
Government Polytechnic, Khamgaon
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

Certificate of Completion
Of Micro Project Assessment at the end of Semester Programme

(By respective Head of Institute & Head of Department)

This is to certify that Mr. Saksham Milind Ingle with Enrollment No. 2100210090 and Mr.

Aditya Dnyaneshwar Kale with Enrollment No. 2100210093 and Mr. Dhanesh Dinesh

Shingade with Enrollment No. 2100210116 and Mr. Sarvesh Vishnu Warule with

Enrollment No. 2100210126 has successfully completed project for completion of Diploma in

Computer Engineering from Government Polytechnic Khamgaon Institute Code 0021 in

subject GAD (22034). In academic year 2022-2023 as per the MSBTE prescribed curriculum

of I scheme.

Signature Seal of the Signature


Institute
Head of Department Project Guide

(Prof. S.V.Paranjape) (Prof. R. D. Tayade)


Acknowledgement

The real spirit of achieving a goal is through the way of excellence and lustrous

discipline. I would have never succeeded in completing my task without the cooperation,

encouragement and help provided to me by various personalities.

B I would like to express my special thanks of gratitude to our respected Principal Dr.

S.S.Prabhune as well as our respected Head of Department Prof. S.V.Paranjape who gave

us the golden opportunity to do this wonderful project. I would also like to express my thanks

to Prof. R. D. Tayade course teacher of GUI Application Dev. Using VB.Net (22034), to let

us perform some new things and complete this project. I am really thankful to them.

Also, I would like to thank all the teaching and non-teaching staff of the department

for their encouragement, co-operation and help. My greatest thank are to all who wished me

success especially my Parents, My friends.


Abstract

A railway reservation system is software that handles distribution, pricing,


scheduling, and other railway operations. Most providers have some of these functions
digitized, but we have used some of them. In this project we can book ticket and cancel
passenger using MS Access DataBase.
An internet booking engine is a piece of software that receives customer search
requests and then returns appropriate results from its inventory. Somewhere in the middle of
the process, the engine can also apply custom business rules to prioritize how search results are
displayed or package several services into a single offer, which increases sales. Booking
engines are used on a railway operator’s website and an app and can also surface in different
types.
Index

Sr. No Title Page no

1 Program of Railway Reservation 1-4


Management system

2 Output 5

3 Conclusion 6

4 Reference 7
Railway Reservation Management System
Program of Bakery Management system

Code :

Public Class Form1


Private Sub ReservationBindingNavigatorSaveItem_Click(sender As Object, e As EventArgs)
Me.Validate()
Me.ReservationBindingSource.EndEdit()
Me.TableAdapterManager.UpdateAll(Me.Vb_net_projectDataSet)

End Sub
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
'TODO: This line of code loads data into the 'Vb_net_projectDataSet1.Reservation' table.
You can move, or remove it, as needed.
Me.ReservationTableAdapter.Fill(Me.Vb_net_projectDataSet.Reservation)
'TODO: This line of code loads data into the 'Vb_net_projectDataSet.Reservation' table. You
can move, or remove it, as needed.
Me.ReservationTableAdapter.Fill(Me.Vb_net_projectDataSet.Reservation)
End Sub

Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click


ReservationBindingSource.MovePrevious()
End Sub

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click


ReservationBindingSource.AddNew()
End Sub

Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click


ReservationBindingSource.MoveNext()
End Sub

Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click


ReservationBindingSource.RemoveCurrent()
End Sub

GPK CO-4I Page 1


Railway Reservation Management System
Private Sub Button6_Click(sender As Object, e As EventArgs) Handles Button6.Click
Me.Close()
End Sub

Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click


On Error GoTo saveerror
ReservationBindingSource.EndEdit()
ReservationTableAdapter.Update(Vb_net_projectDataSet.Reservation)
MsgBox("Data has been saved")

saveerror:
Exit Sub
End Sub

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


ListBox1.SelectedIndexChanged
If ListBox1.SelectedIndex = 0 Then
Train_noTextBox.Text = "21344"
Train_NameTextBox.Text = "Nagpur - Bhusawal Passenger"
Train_TypeTextBox.Text = "Passenger "
Start_StationTextBox.Text = "Nagpur "
End_StationTextBox.Text = "Bhusawal"
Start_stComboBox.Items.Clear()
Destination_stComboBox.Items.Clear()
Start_stComboBox.Items.Add("Nagpur")
Start_stComboBox.Items.Add("Wardha")
Start_stComboBox.Items.Add("Akola")
Start_stComboBox.Items.Add("Malkapur")
Destination_stComboBox.Items.Add("Wardha")
Destination_stComboBox.Items.Add("Akola")
Destination_stComboBox.Items.Add("Malkapur")
Destination_stComboBox.Items.Add("Bhusawal")
Date_of_ReservationDateTimePicker.Value = DateTime.Now
ElseIf ListBox1.SelectedIndex = 1 Then
Train_noTextBox.Text = "41233"
Train_NameTextBox.Text = "Mumbai-Howrah Express"
GPK CO-4I Page 2
Railway Reservation Management System
Train_TypeTextBox.Text = "Express "
Start_StationTextBox.Text = "Mumbai "
End_StationTextBox.Text = "Howrah"
Start_stComboBox.Items.Clear()
Destination_stComboBox.Items.Clear()
Start_stComboBox.Items.Add("Mumbai")
Start_stComboBox.Items.Add("Bhusawal")
Start_stComboBox.Items.Add("Raipur")
Start_stComboBox.Items.Add("Gondia")
Destination_stComboBox.Items.Add("Bhuswal")
Destination_stComboBox.Items.Add("Raipur")
Destination_stComboBox.Items.Add("Gondia")
Destination_stComboBox.Items.Add("Howrah")
Date_of_ReservationDateTimePicker.Value = DateTime.Now
End If
End Sub
Private Sub Destination_stComboBox_SelectedIndexChanged(sender As Object, e As
EventArgs) Handles Destination_stComboBox.SelectedIndexChanged
If Start_stComboBox.SelectedIndex = 0 And Destination_stComboBox.SelectedIndex = 3
Then
Ticket_PriceTextBox.Text = "Rs.356"
ElseIf Start_stComboBox.SelectedIndex = 1 And Destination_stComboBox.SelectedIndex =
3 Then
Ticket_PriceTextBox.Text = "Rs.286"
ElseIf Start_stComboBox.SelectedIndex = 2 And Destination_stComboBox.SelectedIndex =
3 Then
Ticket_PriceTextBox.Text = "Rs.160"
ElseIf Start_stComboBox.SelectedIndex = 3 And Destination_stComboBox.SelectedIndex =
3 Then
Ticket_PriceTextBox.Text = "Rs.50"
ElseIf Start_stComboBox.SelectedIndex = 0 And Destination_stComboBox.SelectedIndex =
0 Then
Ticket_PriceTextBox.Text = "Rs.70"
ElseIf Start_stComboBox.SelectedIndex = 0 And Destination_stComboBox.SelectedIndex =
1 Then
Ticket_PriceTextBox.Text = "Rs.150"
GPK CO-4I Page 3
Railway Reservation Management System
ElseIf Start_stComboBox.SelectedIndex = 0 And Destination_stComboBox.SelectedIndex =
2 Then
Ticket_PriceTextBox.Text = "Rs.200"
ElseIf Start_stComboBox.SelectedIndex = 1 And Destination_stComboBox.SelectedIndex =
1 Then
Ticket_PriceTextBox.Text = "Rs.60"
ElseIf Start_stComboBox.SelectedIndex = 1 And Destination_stComboBox.SelectedIndex =
2 Then
Ticket_PriceTextBox.Text = "Rs.110"
ElseIf Start_stComboBox.SelectedIndex = 2 And Destination_stComboBox.SelectedIndex =
2 Then
Ticket_PriceTextBox.Text = "Rs.40"
End If
End Sub
End Class

GPK CO-4I Page 4


Railway Reservation Management System

Output

 Main Page

 DataBase Page

GPK CO-4I Page 5


Railway Reservation Management System

Conclusion

In this project, we learn about the various functions or methods of VB. Net and how
to create an user interface using buttons, textbox, picture box, combo box, labels,
panel, error providers, etc And also learn about how to handle a software, database
connectivity, database storing and many more.

GPK CO-4I Page 6


Railway Reservation Management System

Reference
 https://www.freeprojectz.com/project-source-code-database-download/bakery-shop-
management-system-project

 https://t4tutorials.com/online-bakery-management-system-project-in-asp-net-or-php-srs-
document/

 https://www.javatpoint.com/vb-net-list

 https://www.educba.com/vb-dot-net-controls/

GPK CO-4I Page 7

You might also like