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