adding to a dataset
i have a single form with two textbox entries connected to a Access db.
it fills and the two entries are seen at load....but i cant seem to add a new entry, i clear the values first and am completly stuck. ive tried....
private void Form2_Load(object sender, System.EventArgs e)
{
oleDbDataAdapter1.Fill (dataSet11);
{
private void button1_Click(object sender, System.EventArgs e)
{
dataSet11.Table1.Rows .Add textBox1.text;// no way
}
completly knackered any ideas?
|