You are on page 1of 1

Practical No. 25 & 26: Understand The Concept Of Data Adapter.

2. Develop a window application that will contain multiple tables in a single dataset.

❖ Program

Public Class Form1

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)


Handles MyBase.Load
'TODO: This line of code loads data into the 'VisualprojectDataSet2.visualproject'
table. You can move, or remove it, as needed.
Me.VisualprojectTableAdapter.Fill(Me.VisualprojectDataSet2.visualproject)
'TODO: This line of code loads data into the 'DepartmentDataSet.Department'
table. You can move, or remove it, as needed.
Me.DepartmentTableAdapter.Fill(Me.DepartmentDataSet.Department)

End
SubEnd
Class

➢ Output

You might also like