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

KeyAdd.Designer.cs
namespace PasswordExpert
{
partial class Key
{
private void InitializeComponent()
{
this.lblNumb = new System.Windows.Forms.Label();

private System.Windows.Forms.Label lblNumb;

this.lblNumb.AutoSize = true;
this.lblNumb.Location = new System.Drawing.Point(123, 27);
this.lblNumb.Name = "lblNumb";
this.lblNumb.Size = new System.Drawing.Size(17, 12);
this.lblNumb.TabIndex = 9;
this.lblNumb.Text = " ";
......
}
......

}
KeyAdd.cs
namespace PasswordExpert
{
public partial class Key : Form
{

string str_temp = this.lblNumb.Text;//这句出错,str_temp是一个测试变量,没有问题。
// lblNumb是lable类型
.......
}

************** 异常文本 **************
System.NullReferenceException: 未将对象引用设置到对象的实例。
这两个文件都是一个命名空间


明明this.lblNumb已经创建,并且有初值( this.lblNumb.Text = " ";)

怎么就说this.lblNumb.Text有问题呢?

搜索更多相关主题的帖子: 123 void private 
2007-10-02 21:04
快速回复:[求助]关于this的问题
数据加载中...
 
   



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

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