打印取消错误?我测试过《生产报表窗体》,koutx的代码是可以执行的。如果需要取消,建议在koutx的代码中加一个打印确认就可以了。
Private Sub Command14_Click()
Dim stDocName As String
Dim a As Long
stDocName = "生产报表"
DoCmd.OpenReport stDocName, acPreview
A = MsgBox("请确认是否打印", vbOKCancel)
If A = 2 Then
DoCmd.CancelEvent
Else
DoCmd.PrintOut
End If
End Sub