Thread: Module name
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson[_4_] Jim Thomlinson[_4_] is offline
external usenet poster
 
Posts: 1,119
Default Module name

In the visual basic editor ensure that the properties window is visible. View
- Properties Window. When the module is selected there is a property called
name. Change this and you change the name of the module. As an aside it is
standard to use iether a 1 or 3 letter prefix to identify it as a module.
Something like

mThisModule
or
modThisModule
--
HTH...

Jim Thomlinson


"Ray A" wrote:

Hi,
Is it possible to name a VBA module? I would like to do this for clarity
when looking for code.
TIA