Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have macros that are automated on excell 2003 and I am not wanting users to
view or execute macros from clicking on tools then macro. How would I gray out this option? Thank you |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Put this at the top of your module
Option private module or private sub instead of just sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Jeremy" wrote in message ... I have macros that are automated on excell 2003 and I am not wanting users to view or execute macros from clicking on tools then macro. How would I gray out this option? Thank you |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
You could put this in (say) the workbook open event and set it to TRUE in workbook close Private Sub Workbook_Open() With Application.CommandBars("Worksheet Menu Bar").Controls("&Tools") .Controls("&Macro").Enabled = False End With End Sub -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "Jeremy" wrote: I have macros that are automated on excell 2003 and I am not wanting users to view or execute macros from clicking on tools then macro. How would I gray out this option? Thank you |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Lock the project from viewing in VBEVBAProject Properties
Gord Dibben MS Excel MVP On Tue, 20 Apr 2010 06:19:01 -0700, Jeremy wrote: I have macros that are automated on excell 2003 and I am not wanting users to view or execute macros from clicking on tools then macro. How would I gray out this option? Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Add to My Places Option Tools Menu | Excel Discussion (Misc queries) | |||
how can i make macros to work when in tools, costumize and option. | Excel Worksheet Functions | |||
In Excel Tools Menu Option Dialog box don't open | Excel Discussion (Misc queries) | |||
Where is menu option to enable macros? | Excel Discussion (Misc queries) | |||
my tools menu does not have Letter and Mailings option | Excel Worksheet Functions |