Puzzled by mysterious Functions !!!

W

WANNABE

I've not worked in access for a while and opened a file today that was developed
5 years ago. It uses the switchboard, which I remember, but one of the menu
options from the switchboard is set as follows -
COMMAND: Run Code << this is a drop down option
Function Name: ImportOutlookData << WHERE DO I FOND THIS FUNCTION ??

I've looked through this DB hi and lo, can not find any functions, no macros,
and the VB is minimal, this is all there is under the Module "basUtility"
Option Compare Database
Option Explicit
' Module variables used in importing from Outlook
Private molApp As Object 'Outlook.Application
Private molNameSpace As Object 'Outlook.NameSpace

Can someone please tell me where I can find the functions, or how I can
determine where the functions are??
 
A

Andy Hull

Hi

First of all, do you have full access to the database? It may be that you
don't have access to the module containing the function.

If you do, check that the module isn't hidden. Go to Tools, Options and look
at the View tab. In the "Show" section, make sure "Hidden Objects" has a tick
next to it and click ok.

Then look again at the modules to see if any have "appeared".

Also, you could create a macro with a RunCode action and use the browse
feature to find which module the function is in.

Having said all of the above, it is possible that the function has been
deleted and the switchboard never amended.

hth

Andy Hull
 
Top