Hi Experts,

A real novice with Access and Access VBA. However, I've poked my toe in the pond and have managed to create a project that is working well. I have a standard module with the following procedure that when run from the VBE displays the named form. I would like to add this "Macro" to the QAT. However, when I look at the QAT Editor and select choose commands from "Macros" my macro doesn't appear. How would I add this macro to the QAT?

Public Sub ShowForm()
DoCmd.OpenForm "Select Applicant"
End Sub