Hi all,
I just wanted to ask what your naming conventions are for Procedures and modules. Currently, I name:
Modules - bas<Name> (basFEExit for example)
Procedures - <module shortened prefix><Name of procedure> (bfeeExit)
I understand that as long as I'm consistent with naming conventions there isn't really an issue, however I want to ask:
I really think I'm over complicating this and causing myself confusion, but thought I'd get an independent opinion.
I just wanted to ask what your naming conventions are for Procedures and modules. Currently, I name:
Modules - bas<Name> (basFEExit for example)
Procedures - <module shortened prefix><Name of procedure> (bfeeExit)
I understand that as long as I'm consistent with naming conventions there isn't really an issue, however I want to ask:
- Is there difference between:
Code:Private Function
Code:Public Function
Code:Function
- Would you prefix your Functions within a module as what you are declaring it as? For example:
Code:Function blnIsValueTrue() as Boolean
I really think I'm over complicating this and causing myself confusion, but thought I'd get an independent opinion.