Open Form acNormal ?

  • Thread starter Thread starter Dave Elliott
  • Start date Start date
D

Dave Elliott

Does opening a form acNormal make it read only?
See syntax below!

DoCmd.OpenForm "FEmpTotHours", acNormal, "", ""
 
No, it does not. Also, you don't need to specify acNormal, it is the
default. It is also not necessary to specify any "trailing" arguments. You
can simply quit after the last needed argument.

Example:
DoCmd.OpenForm "FEmpTotHours"

If you have arguments in the middle that you aren't using, then you need to
put commas in as place holders. You still wouldn't need the empty strings
("").

Example:
DoCmd.OpenForm "FEmpTotHours",,,,,acDialog
 
Back
Top