Hey guys! Any ideas on why this is not working? No errors, just not displaying the names...

private void BindComboBox()
        {
            comboBox1.DataSource = _Project1_1DataSet.Tables["Employee"];
            comboBox1.DisplayMember = "FirstName";

        }

What about the value member?

comboBox1.DisplayMember = "Name"; 
comboBox1.ValueMember = "Name"; 
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.