要判断Access窗体的打印状态,可以使用以下方法:
Me.PrintPreview
If Me.Printer.PrinterStatus = acPrinterReady Then
' 打印机准备就绪,可以打印窗体
Me.Print
End If
If Printer.PrinterStatus = acPrinterReady Then
' 打印机准备就绪,可以打印窗体
DoCmd.PrintOut
End If
请注意,上述方法仅适用于Access VBA编程。如果你是在Access表单的事件过程中进行判断,可以使用类似的代码。