
Function that returns "current function"
Quote:
>Is there a VB function (or some way) to return
>the name of the current function/procedure
>(that is being executed)?
Not that I know of, but you could simulate it:
- declare a global variable called say, FUNC$
- in each event and general procedure (user-written stuff), hardcode
the name of the event or function in FUNC$.
- Then you can check FUNC$ for the name
HTH,
Greg DiGiorgio
Quote:
>Thanks in advance,
> - Mark Fisher