Private Sub CheckForm()
DoCmd.OpenForm "frmAdmin"
End Sub
It will show up after you add code to it.
note that you created a standard code module, not a code module for the form.Private Sub CheckForm()
DoCmd.OpenForm "frmAdmin"
End Sub
You can also search for the HasModule properties in the form properties and set it to true.