Re:
Here is the details:
Ist Form:-
Public Class WOOD
Private Sub Form4_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'TODO: This line of code loads data into the 'RTP_FINALDataSet._8WOOD_WORK' table. You can move, or remove it, as needed.
Me._8WOOD_WORKTableAdapter.Fill(Me.RTP_FINALDataSet._8WOOD_WORK)
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
______CODE?____________________________
End Sub
Private Sub DataGridView1_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellContentClick
End Sub
End Class
2nd Form:-
Public Class G_SCH
Private Sub G_SCH_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'TODO: This line of code loads data into the 'RTP_FINALDataSet2.EMPTY_G_SCH' table. You can move, or remove it, as needed.
Me.EMPTY_G_SCHTableAdapter.Fill(Me.RTP_FINALDataSet2.EMPTY_G_SCH)
End Sub
Private Sub DataGridView1_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellContentClick
End Sub
End Class
Now I want to select few rows from table WOOD (master data base) & copy to table G_SCH (empty data table), to save as new data table for further use. Both the tables have same fields & properties.