you can Remove the Label/Box from your form.
or you can Set their Visible Property to No.
you can pass an OpenArgs parameter when opening a Form as acDialog:
DoCmd.OpenForm FormName:="YourFormName", WindowMode:=acDialog, OpenArgs:="Dialog"
then on the Open event of YourFormName, you check if...