通过VBA进行Attachmate Reflection快速打印?

我正在尝试通过VBA查找在3270会话中“快速打印”屏幕的功能。

到目前为止,用户可以在其功能区上添加一个“快速打印”按钮(“功能”包含在“反射”工作区中),它将在没有提示的情况下将屏幕截图发送到其默认打印机。

我尝试过的一些方法是:

Option Explicit

Public Sys,Sess,MyScreen as Object
Sub example()
   Set Sys = CreateObject("EXTRA.System")
   Set Sess = Sys.activeSession
   Set MyScreen = Sess.Screen

      'These are the syntaxes I've tried to use
   MyScreen.Print (Error 438,Object doesn't support this property)
   MyScreen.QuickPrint (Error 438,Object doesn't support this property)
   MyScreen.PrintScreen (Error 438,Object doesn't support this property)

End Sub

这是本机可行的,还是只能通过将某些东西一起砍掉才能做到?

hudaichen0603 回答:通过VBA进行Attachmate Reflection快速打印?

暂时没有好的解决方案,如果你有好的解决方案,请发邮件至:iooj@foxmail.com
本文链接:https://www.f2er.com/3077854.html

大家都在问