Function reference in query ??

  • Thread starter Thread starter David
  • Start date Start date
D

David

I'm modifying a query. In the query is a WHERE clause
comparing a date column with BeginDate() and EndDate()
How do I find out where these functions are ?
They don't appear to be in any module or any Event
Procedure that I can find.
Any ideas?
I'm using Access 2K
 
They are not inbuilt functions.

Open any code module and use Find command (for the whole project) to find
the words BeginDate and EndDate in your code.
 
One method is to open the debug window (Control+G)
enter the function name in the immediate window at the bottom
Click in the function name
Press Shift+F2

If the function exists anywhere in the code as a public function then you should
jump right to it. Otherwise try searching the entire visual basic by going to
any code module and pressing Control+F and searching for the value in the
current project.
 
Back
Top