Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hi friends iam creating datagridview combobox column in windows forms from load. but at run time iam not getting the values in comboboxcolumn of datagridview. iam using bellow code

        DataGridViewComboBoxColumn clnStatus = new DataGridViewComboBoxColumn();
        clnStatus.DataPropertyName = "Status";
        clnStatus.Name = "Absent - Leave - Present";
        clnStatus.DataSource = new string[] { "Absent", "Leave", "Present" };
        DgvTeacherAttendance.Columns.Add(clnStatus);

here combobox column will display empty values before i select anyone of the dropdown list. why iam getting these error please can anyone help me.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.