KreativeKai
Programmer
I've found code to display the name of the program that is currently running:
MsgBox(System.Reflection.Assembly.GetExecutingAssembly.GetName.Name)
and I've found code to display the sub routine I'm currently in:
MsgBox(System.Reflection.MethodInfo.GetCurrentMethod.Name)
Does anyone have code to display the class that the sub resides in?
Thanks for any input you can give!
MsgBox(System.Reflection.Assembly.GetExecutingAssembly.GetName.Name)
and I've found code to display the sub routine I'm currently in:
MsgBox(System.Reflection.MethodInfo.GetCurrentMethod.Name)
Does anyone have code to display the class that the sub resides in?
Thanks for any input you can give!