Changed the syntax so that the difference between calling a member or a method is more explicit.
If a is a dynDate object: a.format or a.format() are allowed because format is a method. a.freq is allowed but a.freq() returns an error message because freq (same for time) is a member.
Please register or sign in to comment