API: Manipulate Access Window

  • Thread starter Thread starter Mark A. Sam
  • Start date Start date
M

Mark A. Sam

Hello,

I installed the API: Manipulate Access Window from the Access Web, and it
was working fine. I disabled it while I was developing my application, and
tried it yesterday, and now the Form I am calling the program from is also
being hid. I can't imagine why this is occuring. I am using it on an ADP,
rather than am mdb file, but it worked when I first installed it.

Did anyone else run into this issue?

God Bless,

Mark A. Sam
 
Mark said:
I installed the API: Manipulate Access Window from the Access Web,
and it was working fine. I disabled it while I was developing my
application, and tried it yesterday, and now the Form I am calling
the program from is also being hid. I can't imagine why this is
occuring. I am using it on an ADP, rather than am mdb file, but it
worked when I first installed it.

Did anyone else run into this issue?

The form must be a popup-Form

Acki
 
It is a popup form. It was working when I initially installed the function.

God Bless,

Mark
 
Mark A. Sam said:
It is a popup form. It was working when I initially installed the
function.

In recent versions of Windows, the form must be both popup and modal.
Furthermore, it must be visible on the screen, and sometimes if you
leave that to normal timing, it isn't yet, when you try to hide the
window. Issue the statement

Me.Visible = True

before you try to hide the Access window.
 
Back
Top