View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Sub that cannot be executed from Excel

Just to add:
I could type in the name in the dialog (Alt+F8) and run it with no problem.
True, it doesn't show as one of the choices.

--
Regards,
Tom Ogilvy


"Ron Coderre" wrote in message
...
Alex

You're correct....if the sub has an argument, even an optional one, it
won't
be available via: [alt]+[F8]

Example...This sub will be available:
Sub AllCanSeeMe()
'MsgBox "Rats! you see me."
End Sub

But, this one will NOT be

Sub NoneCanSeeMe(Optional DummyArg As Integer)
'MsgBox "Rats! you see me."
End Sub

Does that help?
***********
Regards,
Ron

XL2002, WinXP


"Alex St-Pierre" wrote:

Hi,
I would like to have a Sub that cannot be executed from Excel. The sub
doesn't have a parameters inside. Does the solution is to put a non used
parameters inside?
Thanks!
Alex
--
Alex St-Pierre