Open Form acNormal ?

D

Dave Elliott

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

DoCmd.OpenForm "FEmpTotHours", acNormal, "", ""
 
W

Wayne Morgan

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
 
Top