How to populate listbox dynamically with SQL values
I am a C# beginner. What I am trying to do is pull data from a column in a SQL database and write it to a listbox. Basically, I want the data in the part_num column of my table to be displayed dynamically in the listbox. I have seen: this.listParts.Items.AddRange(new object[] {"Part1", "Part2"}); But how would I go about replacing “Part1” and “Part2” with dynamically generated values from SQL? public mainForm() { InitializeComponent(); SqlConnection conn = new SqlConnection( "Data Source=DBELL;Initial Catalog=part_table;Integrated Security=True"); conn.Open(); DataSet ds = new DataSet();