if a code is written like below what does it mean:
i'm mainly concerned about the commas wat do they imply and what can be put after these commas
Code:
project1.openform form1 ,,,,
project1.openform form1 ,,,,
DoCmd.OpenForm "Form1" or better DoCmd.OpenForm Form1.Name or you could add some commas, but nobody does DoCmd.OpenForm Form1.Name,,,,,, unless you wanted to use one of the optional parameters: DoCmd.OpenForm Form1.Name,,,"LastName = 'Smith'" but a better way is DoCmd.OpenForm FormName:=Form1.Name, WhereCondition:="LastName = 'Smith'"
Comment