zoukankan      html  css  js  c++  java
  • how to use mstsclib

    First of all, I would like to confirm my understanding of your issue. From
    your description, I understand that when you have drag and drop a Terminal
    Services Control on a windows form, a compiler error was generated. If
    there is any misunderstanding, please feel free to let me know.

    Based on my research, this is a known issue. The wrapper generater fails to
    generate correct method for returning an enum value. Here is a workaround.

    1. md c:\temp
    2. cd c:\temp
    3. %<SDK bin directory>%\aximp.exe %windir%\system32\mstscax.dll
    This will generate MSTSCLib.dll and AxMSTSCLib.dll.
    Make sure Interop.MSTSCLib.dll and AxInterop.MSTSCLib.dll have been deleted
    in the obj and bin\Debug directories.
    4. Copy the generated files (without renaming) - MSTSCLib.dll and
    AxMSTSCLib.dll into the project's obj directory.
    5. In the project's references, add MSTSCLib.dll and AxMSTSCLib.dll from
    the obj directories.
    6. Now, instead of drag-drop'ing the control from the toolbox, write code
    to add the control:
    Goto Form.cs code view
    Declare: private AxMSTSCLib.AxMsTscAx axMsTscAx1;
    In InitializeComponent:
    this.axMsTscAx1 = new AxMSTSCLib.AxMsTscAx();
    ((System.ComponentModel.ISupportInitialize)(this.axMsTscAx1)).BeginInit();

    //
    // axMsTscAx1
    //
    this.axMsTscAx1.Enabled = true;
    this.axMsTscAx1.Location = new System.Drawing.Point(58, 17);
    this.axMsTscAx1.Name = "axMsTscAx1"
    this.axMsTscAx1.OcxState =
    ((System.Windows.Forms.AxHost.State)(resources.GetObject("axMsTscAx1.OcxStat
    e")));
    this.axMsTscAx1.Size = new System.Drawing.Size(192, 192);
    this.axMsTscAx1.TabIndex = 1;
    ....

    this.Controls.Add(this.axMsTscAx1);
    ((System.ComponentModel.ISupportInitialize)(this.axMsTscAx1)).EndInit();
  • 相关阅读:
    [LeetCode] Substring with Concatenation of All Words 解题报告
    [LeetCode] Symmetric Tree 解题报告
    [LeetCode] Unique Paths II 解题报告
    [LeetCode] Triangle 解题报告
    [LeetCode] Trapping Rain Water 解题报告
    [LeetCode] Text Justification 解题报告
    [LeetCode] Valid Sudoku 解题报告
    [LeetCode] Valid Parentheses 解题报告
    C++文件的批处理
    C++中两个类中互相包含对方对象的指针问题
  • 原文地址:https://www.cnblogs.com/Stephen/p/142879.html
Copyright © 2011-2022 走看看