Hi all

I seem to have everything working but I just cant get my DGV to load

I think I might be missing something but I'm not sure



c# Code:
  1. DataSet ds = new DataSet();
  2.             SqlConnection conn = new SqlConnection("Server=gci-mocsqdb01;Database=mdb_rpt;Uid=caiahd_rpt;Pwd=dashboard;");//Driver={SQL Server};
  3.             String SelectCmdString = "select * from gci_requests where (gci_requests.group_name='USAT-Publishing Solutions')";
  4.             SqlDataAdapter da = new SqlDataAdapter(SelectCmdString, conn);
  5.             da.Fill(ds, "gci_requests");
  6.             MessageBox.Show("done loading");
  7.             dataGridView1.DataSource = ds;

Thanks for takeing a look