close & reopen the form to show report again
Posted: Sat Jan 08, 2011 6:31 am
Hello 
During my coding, I am using this code:
But only once can see the report.
After closing the report,I should close and open the form to report display again.
thanks

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