Hiding macros in macro popup window

  • Thread starter Thread starter PO
  • Start date Start date
P

PO

Hello,

Is there a way to suppress display of procedures in the macro window the
user can run from the Tool menu from Excel?

I can't make the subs private since they are in a general module and called
from worksheet event procedures.

Regards
PO
 
1. Add "Option Private Module" at the top of the module
or
2. Add an argument to the subs...
Sub ValuableInformation (ByRef blnDummy as Boolean)
End Sub
Of course, then all calls to the sub would require an argument.
or
3. Add an optional argument...
Sub ConfusingData (Optional ByRef blnStuff As Boolean)
End Sub

Choice number 1 is my choice.
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"PO" <h> wrote in message Hello,
Is there a way to suppress display of procedures in the macro window the
user can run from the Tool menu from Excel?
I can't make the subs private since they are in a general module and called
from worksheet event procedures.
Regards
PO
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Macro Stoped Working 2
macro popup box 1
Code to hide rows if cell in another WS is ="No" 11
Filename Problem In a Macro 4
Macro vs Pivot table problem 1
Macro running slow 7
running macros 2
Hide Macro 3

Back
Top