i have 2 tables one holds and id number for a transaction and the other tables holds the data for that transaction
i can populate the first datagridview with the "id" data.
I want to be able to select the row on the datagridview (id) and show the details for that transaction in another table
Me.Tbl_Transactions_HeaderTableAdapter.ClearBeforeFill = True
Me.Tbl_Transactions_HeaderTableAdapter.Fill(Me.DataSet_Sys.tbl_Transactions_Header)
Me.Tbl_Transactions_HeaderDataGridView.Refresh()
this populates the datagridview with the "id" data, how do i then click on a row and the details show in another datagridview.
if i add the code for the transaction data on form load, then it populates all the tranasction data into the
2nd table
Me.Tbl_TransactionsTableAdapter.ClearBeforeFill = True
Me.Tbl_TransactionsTableAdapter.Fill(Me.DataSet_Sys.tbl_Transactions)
Me.Tbl_TransactionsDataGridView.Refresh()