如何在另一个表单标签中显示数据库中的数据

时间:2015-02-26 13:56:02

标签: c# sql database visual-studio instance

我试图从数据库中获取数据并将其放入不同形式的标签中(学生档案)

http://s30.postimg.org/w5ruf5jkh/database_post_error.pnghttp://s30.postimg.org/w5ruf5jkh/database_post_error.png

我已经从学生档案表格中公开了标签:

public string Label9 {
            get
            {
                return this.label9.Text;
            }

            set 
            {
                this.label9.Text = value;            
            }
        }

但问题是:

  

非静态字段,方法或者需要对象引用   property' Student_Profile.Label9.get'

所以我必须创建一个对象的新实例或将其设置为静态? 我该怎么做?

1 个答案:

答案 0 :(得分:2)

您正尝试将其设置为班级(Student_Profile)。

您需要将其设置为以小" s"开头的对象。 (的 studentprofile )。