T tom taol Dec 14, 2007 #1 sub aaa() ~~~~~ msgbox currentProcedureName end sub thus, i want to show aaa in messagebox.
J JMB Dec 14, 2007 #2 The only way I know how to do that is sub aaa() Const strProcedure As String = "aaa" ...... msgbox strProcedure End Sub
The only way I know how to do that is sub aaa() Const strProcedure As String = "aaa" ...... msgbox strProcedure End Sub