0

私はこのコードを使用していますが、エラーオブジェクト参照を与えることはオブジェクトのインスタンスに設定されていません.

using (SqlConnection sqlConn = new SqlConnection("Data Source=OMKAR-PC;Initial Catalog=omkar;Persist Security Info=True;User ID=sa;Password=omkar;Pooling=False"))
   {
       sqlConn.Open();

       using (SqlDataAdapter a = new SqlDataAdapter("SELECT * FROM customer ", sqlConn))
       {
          DataTable t = new DataTable();
          a.Fill(t);
          dataGridView1.DataSource = t;

          this.dataGridView1.CellFormatting +=
new DataGridViewCellFormattingEventHandler(dataGridView1_CellFormatting);


        foreach (DataGridViewRow row in dataGridView1.Rows)
        {
           try
            {
             string  CNumColour = dataGridView1.CurrentRow.Cells[0].FormattedValue.ToString();
             if (CNumColour != null)
             {
               foreach (DataGridViewCell cells in row.Cells)
               {
                 if (CNumColour == "yes")
                   { 
                     cells.Style.ForeColor = Color.Pink;
                   }
                  else if (CNumColour == "no")
                  {
                     cells.Style.ForeColor = Color.Red;
                  }
                }
              }
            } 
         catch (System.Exception ex)
         {

         }
      }
       sqlConn.Close();
     }
4

1 に答える 1