如何在另一个表单标签中显示数据库中的数据
how to display data from database in another form label
我正在尝试从数据库中获取数据并将其以不同的形式(学生资料)放入标签中
(http://s30.postimg.org/w5ruf5jkh/database_post_error.png)
我已经暴露了学生资料表中的标签:
public string Label9 {
get
{
return this.label9.Text;
}
set
{
this.label9.Text = value;
}
}
但问题是:
An object reference is required for the non-static field, method, or
property 'Student_Profile.Label9.get'
所以我必须创建对象的新实例或将其设置为静态?
我该怎么做?
您正在尝试将其设置为 class(Student_Profile)。
您需要将其设置为以小 "s" 开头的对象 (studentprofile)。
我正在尝试从数据库中获取数据并将其以不同的形式(学生资料)放入标签中
我已经暴露了学生资料表中的标签:
public string Label9 {
get
{
return this.label9.Text;
}
set
{
this.label9.Text = value;
}
}
但问题是:
An object reference is required for the non-static field, method, or property 'Student_Profile.Label9.get'
所以我必须创建对象的新实例或将其设置为静态? 我该怎么做?
您正在尝试将其设置为 class(Student_Profile)。
您需要将其设置为以小 "s" 开头的对象 (studentprofile)。