With these code I can actualize my datagrid.
conn.Open();
OleDbCommand cmd = conn.CreateCommand();
cmd.CommandType = CommandType.Text;
cmd.CommandText = "select [date],[name] from 1";
cmd.ExecuteNonQuery();
DataTable dt = new DataTable();
OleDbDataAdapter da = new OleDbDataAdapter(cmd);
da.Fill(dt);
conn.Close();
dgvPorData.DataSource = dt;
Then I am asking question how can I actualize on time a reportview on my form. In other word if I update one data (or some datas) on the same form. How can actulize on run time.
Mfwamba TshimangaPosted Feb 10, 2015, 9:39 AM
Mfwamba TshimangaPosted Feb 9, 2015, 8:58 AM
Its doesnt works (or refresh). Because in configure parameters. I specify dates and name to make filter.
But when I do this:
Its should works only when I introduce value to filter. Otherwise the report show a blank page with only title.