Find Function Call

  • Thread starter Thread starter Adamus Turner via AccessMonster.com
  • Start date Start date
A

Adamus Turner via AccessMonster.com

Greetings all,

Is there a way to find a where a function is being called from within a
module? (Other than Ctrl+F which returns nothing)

Can a module be called from another application through and adodb connection?

I have some formulas I'm trying to understand that use variables passed into
through the functions parameters, but I can't find where the function is
being called to understand what these variables are supposed to be.

Any help appreciated.

Thanks,

Adamus
 
CTRL-F on the function Name will return something if you set the
option for Find in this Database?

If that returns nothing then the function is not being called in your
database.

HTH
 
Adamus said:
Greetings all,

Is there a way to find a where a function is being called from within a
module? (Other than Ctrl+F which returns nothing)

Can a module be called from another application through and adodb connection?

I have some formulas I'm trying to understand that use variables passed into
through the functions parameters, but I can't find where the function is
being called to understand what these variables are supposed to be.

Any help appreciated.

Thanks,

Adamus

Click on the function's name and press Shift+F2. This takes you to the
called sub/function if it exist in the current database.

Bob
 
Is there a way to find a where a function is being called from within a
module? (Other than Ctrl+F which returns nothing)

Put a breakpoint in the function, and then look at the call stack while
it's in break mode.

Tim F
 
Back
Top