我正在为 Attachmate's Reflection for IBM 2014 编写一个外部应用程序,在该应用程序中,我正在尝试使用现有会话文件创建 relfection 应用程序。该应用程序已成功创建,但对用户不可见,我尝试了几种方法来做到这一点,但还没有运气。
如果有人这样做或知道需要做什么才能使终端可见,请回复。
以下是我用来执行此操作的一段代码,
using Attachmate.Reflection;
using Attachmate.Reflection.Framework;
using Attachmate.Reflection.Emulation.IbmHosts;
using Attachmate.Reflection.UserControl.IbmHosts;
using Attachmate.Reflection.UserInterface;
Application reflectionApplication;
reflectionApplication = MyReflection.CreateApplication("app", true);
IIbmTerminal terminal =(IIbmTerminal)reflectionApplication.CreateControl(@"C:\mypath\test.rd3x");
reflectionApplication = MyReflection.ActiveApplication;
IFrame frame = (IFrame) reflectionApplication.GetObject("Frame");
frame.Visible = true;