Grouping & Filtering #2 – Kiosk Mode DEMO (1 Viewer)

Status
Not open for further replies.

isladogs

MVP / VIP
Local time
Today, 15:44
Joined
Jan 14, 2017
Messages
18,186
This is the second in a series showing different ways of filtering and grouping data in Access.

This example is a DEMO of a typical patient login system similar to that used in my local medical practice.
It would normally be used on a touch screen with no keyboard and occupy the entire screen (kiosk mode).

The startup form provides various options for testing/using this application

The challenge for kiosk mode applications is to design forms that guide the user through all possible scenarios in as few screens as possible to filter the data down to a single unique record. Large font sizes and large buttons are always used in kiosk mode apps for ease of use.

In this example, users first select their gender then their birth month & birth date. For example:



The application then checks the list of appointments for the current date.
If there is only one record matching those details, a confirmation screen appears.
Click Yes if the details are correct and the appointment details are displayed



When the Done button is clicked, the application returns to the login screen ready for the next user.
The login time is saved. This provides an easy method of checking for non-attenders as their login time will be blank

There are several variations in the process depending on the outcomes.
The PDF file supplied with the app gives full details of the different routes possible using the app.

For example, 2 or more patients with the same gender and birth date/month may have an appointment that day. If so, two additional screens appear so that the year of birth can be selected.



Further info:
The DEMO application contains over 3300 patients and over 530 appointments for the same date.

To make this as realistic as possible for testing purposes, the following changes are made to the records in tblAppointments when the application is started:
a) All appointments are changed to the current date
b) All login times for dates other than today are cleared

Keyboard Shortcuts:
a) Open the application with the SHIFT key held down to view the navigation pane, ribbon & code
OR click Ctrl+H to view the navigation pane and ribbon at any time.
b) To hide the navigation pane & ribbon again, click Ctrl+Shift+H
c) To return to the startup form, click Ctrl+S
d) To close the application, click Ctrl+Q

I would appreciate any feedback on this example application
 

Attachments

  • Patient Login.zip
    1.3 MB · Views: 616
  • Patient Login Forms 1.jpg
    Patient Login Forms 1.jpg
    42.9 KB · Views: 968
  • Patient Login Forms 2.PNG
    Patient Login Forms 2.PNG
    84.5 KB · Views: 921
  • Patient Login Forms 3.jpg
    Patient Login Forms 3.jpg
    39.2 KB · Views: 941

Minty

AWF VIP
Local time
Today, 15:44
Joined
Jul 26, 2013
Messages
10,355
Nice demo Colin. Really good real world application.
 

isladogs

MVP / VIP
Local time
Today, 15:44
Joined
Jan 14, 2017
Messages
18,186
Thanks Minty.
As I said its very similar to the system in my local medical practice.

However, I've no idea how they handle issues like several patients with the same gender and date of birth having an appointment the same day
 

Minty

AWF VIP
Local time
Today, 15:44
Joined
Jul 26, 2013
Messages
10,355
Actually I'm pretty sure the one in my local surgery asks for your surname initial somewhere near the beginning of the process, so that must be sufficient to make it relatively unique?

Or maybe it's coded in such a way that it only asks that, if the returned recordset is > 1 record? That would be more cunning...
 

isladogs

MVP / VIP
Local time
Today, 15:44
Joined
Jan 14, 2017
Messages
18,186
That's a variation on how my example works
1. Just select gender, birth date & month if these give a unique record
2. If >1, select birth decade then year
£. If still >1, select from appointment times matching the above

I've only ever had to do step 1 so the rest is surmise
 
Status
Not open for further replies.

Users who are viewing this thread

Top Bottom