Here's my problem. In the called DB, I have a splash screen that is used
as a
startup screen. When I'm running in development mode I don't have a
startup
screen specified. When I put the appl into production I always go to
tools,
options and specify a startup. When I call the remote DB I hide the called
instance of Access. In test mode this works fine - the module executes,
and
the user never sees anything. In production mode the splash does not get
displayed, which is what I want. but in my splash screen Load event I open
a
login form, and for some reason this form gets displayed. This happens
before
the function gets executed. I don't want this to happen - I want to bypass
the login form and just execute the function. I realize that I can assume
the
function was called remotely, but this form gets displayed before the
function is run, and I don't want the user to have to do anything once
they've clicked the button that calls the remote function. As it stands
they
get presented with this login screen. Once that is done, nothing more is
displayed - the function runs and that 'hidden' instance of Access is
closed.