Brandon Ferguson
{
InitializeComponent();
}
cmd.Connection = cn;
loadlist();
listBox1.Items.Clear();
listBox2.Items.Clear();
cn.Open();
cmd.CommandText =
dr = cmd.ExecuteReader();
listBox1.Items.Add(dr[0].ToString());
listBox2.Items.Add(dr[1].ToString());
cn.Close();
when i debug the form loads but the data is not processing back to the lists.
Is there somehting wrong with my connection screen.