Reflection .NET API
Walkthroughs / Add the Terminal User Control / Embed Terminal User Controls
In This Topic
    Embed Terminal User Controls
    In This Topic

    The Reflection Terminal User Control (TUC) can be embedded in your Windows applications to provide a terminal screen on a Windows form along with another application or a different data source. This control renders a terminal emulator session within a given windows form application.

    You can also embed Reflection Terminal User Controls on Windows Presentation Foundation (WPF) applications.

    Note:
    You can use the Reflection Terminal User Control with Visual Studio 2017 targeted to .NET 4.7.1.

    When creating applications on a 64-bit machine and using a Reflection Terminal User Control, make sure the application target is set to "x86" instead of "Any CPU" or "x64". This is required because a 64-bit application does not work directly with 32-bit controls. If the build target (Platform) is not set to "x86", the "COMException: class not registered" error is displayed during runtime.

    To set up the IBM terminal User Control

    1. In Visual Studio, create a new Windows Form Application.
    2. In Form Design view, drag and drop the IbmTerminalControl from the Toolbox to Form1.

      Note: The required assemblies are automatically added to the project references after you add the control to the form.


    3. In Form designer, double-click on Form1. This adds the default Form event handler, which is the Load event. Then add a call to InitInstance. This call initializes the terminal control ibmTerminalControl1, with a new host type or a session file. The following example code creates a new 3270 session file.

      private void Form1_Load(object sender, EventArgs e)

      {

           ibmTerminalControl1.InitInstance(Attachmate.Reflection.UserControl.IbmHosts.HostType.IBM3270);

      }

    4. Back in the Form designer, select the ibmTerminalControl1 control you added and then in the Properties view, set the Dock property to Fill. This allows the control to fill the Form. Resizing of the form resizes the contained terminal control at runtime. This is ideal for resizing the Terminal view, but not required.

         
    5. Double-click on the ibmTerminalControl1 control. This adds an event handler for the ibmTerminalControl1 TerminalInitializedEvent event. This event is fired after the terminal is initialized from the InitInstance call (made after the form loads).
    6. In code view for Form1.cs, add the event handler code as follows. The following code sets the host address and connects to the host.

      private void ibmTerminalControl1_TerminalInitializedEvent(object sender, AsyncCompletedEventArgs e)

      {

           ibmTerminalControl1.IbmTerminal.HostAddress = "zos.efglobe.com";
           ibmTerminalControl1.IbmTerminal.Port = 23;

           ibmTerminalControl1.IbmTerminal.Connect();

      }

    7. In the Form Designer, select Form1 and then in the Properties window, select  to open the Events view.
    8. For the FormClosing event, enter Form1_FormClosing and then double click to add this event handler.
    9. In the form code window, add the following code to the Form1_FormClosing event handler. This code closes the terminal and sets it to null before the form is closed.  
      private void Form1_FormClosing(Object sender, FormClosingEventArgs e)
      {
             ibmTerminalControl1.IbmTerminal.Close(Attachmate.Reflection.CloseOption.CloseNoSave);
             ibmTerminalControl1 = null;
      }
      
    10. Build and run the solution. At runtime, you should get a form that renders a terminal host.

                     

      Note:  

      You may see the following compiler warning:

      Warning A reference was created to embedded interop assembly 'c:\Windows\assembly\
      GAC_MSIL\Reflection\<version>__13bff1b6907eadcf\Reflection.dll' because of an indirect reference to that assembly created by assembly 'c:\Program Files\Micro Focus\Reflection\Programmer Interfaces\Attachmate.Reflection.UserControl.IbmHosts.dll'. Consider changing the 'Embed Interop Types' property on either assembly.

      The simplest way to resolve this warning is to set the Embed Interop Types property of the ReflectionReference to False. For more about how to resolve this warning, see Technical Note 2579.

     

    To set up the Open Systems User Control

    1. In Visual Studio, create a new Windows Form Application.
    2. In Form Design view, drag and drop the OpenSystemsTerminalControl from the Toolbox to Form1.

      Note: The required assemblies are automatically added to the project references after you add the control to the form.


    3. In Form designer, double-click on Form1. This adds the default Form event handler, which is Load event. Then add a call to InitInstance to initialize the terminal control.

      private void Form1_Load(object sender, EventArgs e)

      {

           openSystemsTerminalControl1.InitInstance();

      }

    4. Add the following using directive:

      using Attachmate.Reflection.Emulation.OpenSystems;

    5. Back in the Form designer, select the openSystemsTerminalControl1 control you added and then in the Properties view, set the Dock property to Fill. This allows the control to fill the Form. Resizing of the form resizes the contained terminal control at runtime. This is ideal for resizing the Terminal view, but not required.

    6. Double-click on the OpenSystemsTerminalControl1 control. This adds an event handler for the openSystemsTerminalControl1 TerminalInitializedEvent event. This event is fired after the terminal is initialized from the InitInstance call (made after the form loads).
    7. In code view for Form1.cs, add the event handler code as follows. The following code sets the host address and connects to the host.

      private void openSystemsTerminalControl1_TerminalInitializedEvent(object sender, AsyncCompletedEventArgs e)

      {

           ITerminal Terminal = openSystemsTerminalControl1.Terminal;

           ((IConnectingSettingsBestNetwork)Terminal.ConnectionSettings).HostAddress = "yourHostName";

           Terminal.Connect();

      }                     

    8. In the Form Designer, select Form1 and then in the Properties window, select  to open the Events view.
    9. For the FormClosing event, enter Form1_FormClosing and then double click to add this event handler.

    10.  In the form code window, add the following code to the Form1_FormClosing event handler:
      private void Form1_FormClosing(object sender, FormClosingEventArgs e)
      {
          openSystemsTerminalControl1.Terminal.Close(Attachmate.Reflection.CloseOption.CloseNoSave);
          openSystemsTerminalControl1 = null;
      }
      
    11. Build and run the solution. At runtime, you should get a form that renders a terminal host.


                             

       

      Note:

      You may see the following compiler warning:

      Warning A reference was created to embedded interop assembly 'c:\Windows\assembly\
      GAC_MSIL\Reflection\<version>__13bff1b6907eadcf\Reflection.dll' because of an indirect reference to that assembly created by assembly 'c:\Program Files\Attachmate\Reflection\Programmer Interfaces\Attachmate.Reflection.UserControl.IbmHosts.dll'. Consider changing the 'Embed Interop Types' property on either assembly.

      The simplest way to resolve this warning is to set the Embed Interop Types property of the ReflectionReference to False. For more about how to resolve this warning, see Technical Note 2579.