Event handlers, naming conventions
When creating form events and event handlers, we recommend these naming conventions:
- Use descriptive names; that is, names that indicate or can serve as a reminder of what the event and handler do.
- Do NOT use the prefix "Std" for your form events and event handlers. This prefix is used for predefined system standard events.
- We recommend that you use names that contain only alphanumeric characters and the underscore (_) character. Alphanumeric characters include the letters a-z, either upper case or lower case, and the numerals 0-9.
Related topics