VS.Net C# 调用 Active 组件

active

  在编码中不可否认调用Active会给编程带来很大便利,虽然微软不太只持.net调用Active 组件。
       本实例是一个简单Web 页面调用Active组件的例子,实现把数据传入并显示在active组件里的控件中。
  实例代码如下:
1、建立Active组件(这里用.net c#创建)
        (本程序中:建立类库添加组件类后托放:label 、 button  、groupBox各一个)
   需要注意的是在生成.dll之前一定要在类库的AssemblyInfo.cs中加入引用using System.Security;和属性[assembly : AllowPartiallyTrustedCallers()],这是为了给控件赋予足够的权限使它能在页面上显示。

using System;
using System.ComponentModel;
using System.Collections;
using System.Diagnostics;
using System.Windows.Forms ;

namespace ActiveXDotNet
{
    /**//// <summary>
    /// AbeenControl 的摘要说明。
    /// </summary>
    public class AbeenControl : System.Windows.Forms.UserControl
    {
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.GroupBox groupBox1;
        /**//// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.Container components = null;

        public string LabelText
        {
            get
            {
                return this.label1.Text.ToString();
            }
            set
            {
                this.label1.Text=value;
            }
        }

        public AbeenControl(System.ComponentModel.IContainer container)
        {
            /**////
            /// Windows.Forms 类撰写设计器支持所必需的
            ///
            this.label1.Text="test";
            container.Add(this);
            InitializeComponent();

            //
            // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
            //
        }

        public AbeenControl()
        {
            /**////
            /// Windows.Forms 类撰写设计器支持所必需的
            ///
            InitializeComponent();
           

            //
            // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
            //
        }

        /**//// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        protected override void Dispose( bool disposing )
        {
            if( disposing )
            {
                if(components != null)
                {
                    components.Dispose();
                }
            }
            base.Dispose( disposing );
        }

        组件设计器生成的代码#region 组件设计器生成的代码
        /**//// <summary>
        /// 设计器支持所需的方法 - 不要使用代码编辑器修改
        /// 此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.label1 = new System.Windows.Forms.Label();
            this.button1 = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(16, 24);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(296, 23);
            this.label1.TabIndex = 0;
            this.label1.Text = "label1";
            //
            // button1
            //
            this.button1.Location = new System.Drawing.Point(120, 56);
            this.button1.Name = "button1";
            this.button1.TabIndex = 1;
            this.button1.Text = "button1";
            this.button1.Click += new System.EventHandler(this.button1_Click);
            //
            // groupBox1
            //
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.button1);
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(320, 88);
            this.groupBox1.TabIndex = 2;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "groupBox1";
            //
            // AbeenControl
            //
            this.Controls.Add(this.groupBox1);
            this.Name = "AbeenControl";
            this.Size = new System.Drawing.Size(328, 96);
            this.Load += new System.EventHandler(this.AbeenControl_Load);
            this.groupBox1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
        #endregion

        private void button1_Click(object sender, System.EventArgs e)
        {
            this.label1.Text="点击完成!";
        }

        private void AbeenControl_Load(object sender, System.EventArgs e)
        {
       
        }
    }
}
2、web 页面调用Active组件
  注意web页面调用时需要把Active的.dll放到web的虚拟要目录下。
<HTML>
    <HEAD>
        <title>TestActive</title>
        <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
        <meta name="CODE_LANGUAGE" Content="C#">
        <meta name="vs_defaultClientScript" content="javascript">
        <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
    </HEAD>
    <body >
        <font face="arial" size="1">
            <OBJECT id="MyControl1" name="MyControl1" classid="http://localhost/WebApplication1/ActiveXDotNet.dll"
                width="288" height="72" VIEWASTEXT>
            </OBJECT>
        </font>
        <form id="frm" name="frm">
            <input type="text" name="txt" value="请输入数据:" ID="Text1">
            <input type="button" value="确定" ID="Button1" NAME="Button1">
            <script type="text/javascript">
            function doScript()
            {
                 MyControl1.LabelText=frm.txt.value;
            }
           
            </script>
        </form>
    </body>
</HTML>

时间: 2024-11-27 13:58:08

VS.Net C# 调用 Active 组件的相关文章

在ASP中调用DCOM组件的应用技巧

在ASP中调用DCOM组件的应用技巧 1.编写DCOM组件: 假设我们想通过ASP页面来远程启动DNS服务,并且DNS服务器与Web服务器不为同一台机器.我们可以编写一个ActiveX DLL 来实现这个功能. 首先我们建立一个批处理文件StartDNS.bat,文件中写入:Net Start DNS.将文件保存在DNS服务器的一个目录下,例如C:\ManDNS\: 其次我们编写 Dll 程序如下(VB编写): Public Function StartDNS() As Boolean On E

多线程-在html中调用ocx组件,其click事件在运行过程中如何改变按钮状态?

问题描述 在html中调用ocx组件,其click事件在运行过程中如何改变按钮状态? 20C 我在做一个简单的网页demo,使用html语言调用ocx组件的方式完成前端功能加载和运行,我使用了一个按钮来调用ocx组件.我现在的问题是:我需要通过UI界面来清楚表示ocx组件的运行进度,比如:点击"执行"按钮,在执行过程中,按钮框变成"正在执行..."或者增加某种进度提示信息,当ocx组件执行完成后,按钮状态能够还原.我使用了很多方式,比如:1.增加进度条:2.通过定时

C# 可以直接调用金税组件接口吗?

问题描述 C# 可以直接调用金税组件接口吗? C# 可以直接调用金税组件接口吗?还是需要通过别的程序来调用? 解决方案 看看这个实例有没有用:http://download.csdn.net/detail/wang781109/5692821 解决方案二: 谢了,可以调用,金税2.0平台是.net framework4.0开发的,跟我们平台不一致,引起错误.

c#调用com组件的奇怪问题,各位大神帮忙

问题描述 c#调用com组件的奇怪问题最近做了一个简单的http服务器,要求在收到客户端发送的数据后根据数据的不同调用com组件的不同方法,现在总是没有响应,代码流程示例如下:1.线程定义thread=newThread(newThreadStart(listen));thread.IsBackground=true;thread.Start();2.方法体其中:c.OpenCard()是调用com组件的代码,该com组件由c++bulider编写.publicvoidlisten(){IPAd

【高手请进】:怎样解决调用迅雷组件弹出窗口

问题描述 我现调用迅雷组件下载文件,问题是要弹出那个确认窗口.问: 怎样解决或者取消这个窗口? 有什么办法可以模拟? 解决方案 解决方案二:再看一下

window service 里用Timer 调用 SFTP组件,但是其中某个线程会自动停掉,求救

问题描述 附上源代码:下载源代码后可以看UploadService.cs,还请大侠们帮忙啊,一直没有解决的问题,比如说,ONSTART里面根据数据库的数据启动了5个线程A,B,C,D,E,每个线程启动一个TIMER,TIMER里运行UploadFile方法,调用第三方组件SFTP,每次连接的时候我会写一个LOG出来,记录一下是否连接成功了,过了几天发现其中某个线程B不写LOG了,文件也不传输了,也就是好像跳出这个TIMER了,这是什么原因啊? 解决方案 解决方案二:异常处理了没.加trycatc

net office-net调用office组件,弹出 Excel已经停止工作,求解决方法!

问题描述 net调用office组件,弹出 Excel已经停止工作,求解决方法! 在读取Excel的时候,在遍历单元格的时候,弹出Excel停止工作的对话框,点击对话框中关闭程序的时候,程序跳到catch中捕捉到异常,出错的代码,是在遍历列的时候出错的,求解决方法!!! 解决方案 如果只是读数据可以使用OLBC来读,也就是将excel看做access,这样比较快 解决方案二: 遍历的方法对吗,是不是有判断获取的元素是否为空等 解决方案三: 我这里要写数据,对于同一个文件,用只读的方式打开的时候,

php调用com 组件wscript.shell执行dos命令

/php调用com 组件wscript.shell执行dos命令   p('<hr width="100%" noshade /><pre>');   if ($execfunc=='wscript' && IS_WIN && IS_COM) {    $wsh = new COM('WScript.shell');    $exec = $wsh->exec('cmd.exe /c '.$command);    $std

c++-C#调用ATL组件(C++)的写法问题

问题描述 C#调用ATL组件(C++)的写法问题 调用一个有ATL MFC的native dll ,不能Reference,只能DllImport!例如ATL 接口中的一个方法:HRESULT F1( [nstring] BSTR a1 [outretval] VARIANT_BOOL *bRet);C#调用的写法怎样,具体就是返回值怎样写?[DllImport(""xxx.dll"")]public static extern [MarshalAs(Unmange