Kill Print notification?

WinDancer

Registered User.
Local time
Today, 00:42
Joined
Oct 29, 2004
Messages
290
I am using this function to start/stop screen activity- I works on everytning EXCEPT the print notifications...

Option Compare Database
Option Explicit

Private Declare Function LockWindowUpdate Lib "user32" _
(ByVal hwndLock As Long) As Long

Sub acbShowUpdates(blnShow As Boolean)
If blnShow Then
'LockWindowUpdate 0
Application.Echo True
Else
'LockWindowUpdate Application.hWndAccessApp
Application.Echo False
End If
End Sub

Sub acbShowUpdatesAPI(blnShow As Boolean)
If blnShow Then
LockWindowUpdate 0
Else
LockWindowUpdate Application.hWndAccessApp
End If
End Sub

How to turn off the print notices?

Thanks,
Dave
 

Users who are viewing this thread

Back
Top Bottom