Hiding Access in background,but still displayin reports

B

BA

Good day
I am having difficulty hiding Access in the background, but still allowing
my reports to be visible.

The code I used to hide Access is :
const SW_HIDE = 0
private declare function ShowWindow Lib " users32" (byval hwnd as long,
byval ncmdshow as long) as long

[In the switchboards open form event the follow exists.]
dim hwindow as long
dim nresult as long
dim ncmdshow as long

hwindows=application.hwndaccessapp
ncmdshow=SW_HIDE
nresult = showwindow (byval hwindow,byval ncmdshow)

How can I display queries and results, while keeping access hidden in the
background?Is that possible?

Your help is sincerely appreciated
BA
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top