Name of Current Procedure?

  • Thread starter Thread starter JohnWL
  • Start date Start date
J

JohnWL

Is there any property or constant or something I can read in VBA to get the
complete name of the current procedure in a form's module, similar to
Me.Module for getting the name of the current module? In the example below,
I would want a property or variable or function or something that indicates
the
current procedure is "txtFwdCity_AfterUpdate".

Sub txtFwdCity_AfterUpdate()
My code
End Sub
 
Back
Top