Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Naming convention for VBA modules?

I never really know how to name VBA modules. Should I:

  1. Use a prefix, like basName or modName.
  2. Not use a prefix, like Module. (But avoid restricted words)
  3. Something else
like image 258
EdOxH Avatar asked Apr 10 '10 03:04

EdOxH


1 Answers

Do not prefix! Name the module appropriately for what it does.

like image 136
ChaosPandion Avatar answered Sep 24 '22 12:09

ChaosPandion