You want to show and insert 2 rows worth of data at once?
What a strange app!
Read the Dw2 link in my signature, section "Creating a Simple Data App"
After you do this you'll have knowledg eof something called a TableAdapter. Just call its Insert twice:
tableadapter.Insert(textbox1.Text, textbox2.Text ....)
tableadapter.Insert(textbox8.Text, textbox9.Text ....)
|