DoCmd.OpenForm "Categories Form"
Forms![Categories Form].Visible = False
This code will load a form called Categories Form. Then it will make the form invisible, so that the user can not see it.
You can then close your form with the following VBA code:
DoCmd.Close acForm, "Categories Form"