| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 467 人关注过本帖
标题:[求助]关于一个ActiveX的代码错误
取消只看楼主 加入收藏
sw897
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-3-31
收藏
 问题点数:0 回复次数:0 
[求助]关于一个ActiveX的代码错误

using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
namespace ActiveXDotNet
{
public interface AxMyControl
{
String UserText
{
set;
get;
}
}

/// <summary>
/// MyControl 的摘要说明.
/// </summary>
public class MyControl : System.Windows.Forms.UserControl, AxMyControl
{
/// <summary>
/// 必需的设计器变量.
/// </summary>
private System.ComponentModel.Container components = null;

private System.Windows.Forms.GroupBox groupBox1;

private System.Windows.Forms.Label label1;

private System.Windows.Forms.TextBox txtUserText;

private String mStr_UserText;

public String UserText
{
get
{
return mStr_UserText;
}
set
{
mStr_UserText = value;
//修改组件的数值
txtUserText.Text = value;
}
}

public MyControl()
{
// 该调用是 Windows.Forms 窗体设计器所必需的.
InitializeComponent ( ) ;
// TODO: 在InitializeComponent 调用后添加任何初始化
}

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

}
}
上面是小弟下的程序,在直接生成DLL出错,各们高手帮助改一下,谢谢

[此贴子已经被作者于2006-5-8 22:39:00编辑过]

搜索更多相关主题的帖子: ActiveX 代码 
2006-05-08 14:20
快速回复:[求助]关于一个ActiveX的代码错误
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016341 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved