hello, I have 2 access table in a same databse, both the tables registration number same. Now i want based on my 1st form registration number the 2nd from must open with that 2 table details.
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles personal_details_button.Click
ptpersonal_details.Ptpersonal_detailsTableAdapter.FillBy(ptpersonal_details.TerminalDataSet.ptpersonal_details, Me.Registration_NoTextBox.Text)
End Sub
"ptpersonal_details" is my 2nd form name. But its not working.
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles personal_details_button.Click
ptpersonal_details.Ptpersonal_detailsTableAdapter.FillBy(ptpersonal_details.TerminalDataSet.ptpersonal_details, Me.Registration_NoTextBox.Text)
End Sub
"ptpersonal_details" is my 2nd form name. But its not working.