Application.Printers 返回错误消息“对象不支持此属性或方法”
我是否需要选择特定的参考以使打印机属性可见?哪一个?
Do I need to select a specific Reference to make printers property visible? Which one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Excel VBA Worksheet 对象具有 PrintPreview 方法。如果不需要默认打印机,您可以从预览屏幕中选择打印机。此外,工作表上的 PageSetup 对象具有许多属性来准备工作表进行打印。
这是一个例子:
The Excel VBA Worksheet object has a PrintPreview method. You can select your printer from the Preview Screen if the default is not desirable. Also, the PageSetup object on the Worksheet has lots of properties to prepare the worksheet for printing.
Here's an example:
Application.Printers 在 Excel 中不可用,但在 Access 中可用。
Application.Printers is not available in Excel, though it is in Access.