My program is working fine (windows forms and access database) and tables that I have done in beginning of the project are also being read and updated.
Now I needed to add a new element to a program which needed another table, which I added to access database. Information of the table is used in datagridwiev which I added to a form. After choosing the table as a datasource the program add following code, which then does not work.
the error code again "The Microsoft Access database engine cannot find the input table or query 'Huollot'. Make sure it exists and that its name is spelled correctly."
I would be so gratefull of any help whith this topic.
Now I needed to add a new element to a program which needed another table, which I added to access database. Information of the table is used in datagridwiev which I added to a form. After choosing the table as a datasource the program add following code, which then does not work.
Code:
private void Huollot_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'harjoitustyoDatabaseDataSet.Huollot' table. You can move, or remove it, as needed.
this.huollotTableAdapter.Fill(this.harjoitustyoDatabaseDataSet.Huollot);
}
I would be so gratefull of any help whith this topic.
Comment