Suppress MS-Access Window?

  • Thread starter Thread starter JimP
  • Start date Start date
J

JimP

Is it possible to suppress the MS-Access window?

At startup I would like to display a report in preview mode, without showing
the Access window.
 
The simplest way is Tools, Startup.

Under Display Form/Page choose the report. Then uncheck Display Database
Window.
 
I won't reccomend it but you can try with

Public Declare Function SetParent Lib "User32" (ByVal hWndChild As Long,
ByVal hWndNewParent As Long) As Long

Usage (in report open):

SetParent Me.hWnd,0&

Pieter
 
Back
Top