Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
private void Btn_View_Course_Click(object sender, EventArgs e)
        {
            try
            {
                GFun.BindAccessConn();
                sql = "select CONVERT(varchar(11), [Sch_Date], 106)  AS schDate, [Session],[Faculty_Code] from Tb_SCh_TIme_Table where Course = '" + cb_Course_Name.Text.ToString().Trim() + "'  order by Date,session";
                OleDbDataAdapter dataadapter = new OleDbDataAdapter(sql, GFun.OleDbCon);
                BindingSource bs = new BindingSource();
                DataTable table = new DataTable();
                dataadapter.Fill(table);
               bs.DataSource = table;
               DGV_Course_report.DataSource = bs;
          catch (Exception ex1)
          {
              MessageBox.Show(ex1.ToString(), "Error", MessageBoxButtons.OK);
          }
      }


when i click the course button in data grid view records are not displayed in the data grid view.

it shows the error as follows;

IErrorInfo.GetDescription failed with E_FAIL(0x80004005).<br />

please help me.

from my above code what is the mistake .help me.
Posted
Updated 28-Jan-13 23:37pm
v3
Comments
CHill60 29-Jan-13 6:44am    
First fix the error in your error handling ... ex1.ToString() should be ex1.Message. When you've done that the error message displayed should give you a clue as to what is wrong - use the Improve question widget to post the actual error and we'll have another look

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900