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
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