
Praveen M.
asked 06/08/21Devlop a VB. Net program for booking a confrence room in a company
Q. Developop a VB.Net program for booking a conference room in a company
1. Generate the form to book the conference room with the necessary details
2. Generate the form that confirms the booking status of a conference room against the request.
1 Expert Answer

Patrick B. answered 06/08/21
Math and computer tutor/teacher
1) FORM CONTROLS
Use a list box for the names of the conference rooms;
Use dateTimePIcker for scheduling the reservation...
set the FORMAT property to CUSTOM;
set the CustomFormat property to MM dd yyyy hh mm ss
of course, will also need OK button
2) Data
Set up the data file like this:
room date time
1st Floor, 6/8/21, 14:00:00
2nd Floor, 6/9/21, 10:00:00
3rd Floor, 6/8/21, 13:30:00
Reads these records from the file to determine if there is a conflict.
If the room is available at the requested time, writes the reservation to
the file (in append mode) and displays a message box saying the reservation
is complete. Otherwise display a message box saying the room is unavailable
at that time.
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Patrick B.
Also need to know if there is a TIME LIMIT as to how long they are allowed to use the conference room. Otherwise, they can reserve the room for say 5 hours and then not use it/walk away, so that it gets wasted. Someone else can be using that room06/08/21