
During my coding, I am using this code:
Code: Select all
Dim dap As SqlDataAdapter = New SqlDataAdapter("SELECT student_id, student_name, Student_family FROM students", Conn)
Dim dst As DataSet = New DataSet
Conn.Open()
dap.Fill(dst, "studentreporttable")
Conn.Close()
stu.RegData(dst)
stu.Render()
stu.Show()
After closing the report,I should close and open the form to report display again.
thanks