Visual studio, Urgent help needed!!!

I have a database, where we have connections between Report and Database with Dataset. I need to change something in the Database, acourding to which I need it to recalculate all other data and print in new Report.

This was the problem, is it better to change just few entries in table to print report or is it better to reprint brand new report. Is it possible to solve my problem or i want too much from a program.

Another question is it possible to do simple operation like i.e.
"Date(dd.mm.yyyy)" - "day number" = "New date(dd.mm.yyyy)"

Private Sub Form4_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
Dim table As New DataTable

'Here is entered changes in Data table'

table = Database2_beDataSet1._1
Me.ReportViewer1.Dock = System.Windows.Forms.DockStyle.Fill
Me.Text = "Bericht"
Me.ClientSize = New System.Drawing.Size(700, 600)
Me.ReportViewer1.ProcessingMode = ProcessingMode.Local
Me.ReportViewer1.LocalReport.ReportPath = "C:\Program Files (x86)\PQP\PQP\Report2.rdlc"
Me.ReportViewer1.LocalReport.DataSources.Add(New ReportDataSource("DataSet1", table))
Me._1TableAdapter1.Fill(table)
Me.Controls.Add(ReportViewer1)
Me.ReportViewer1.RefreshReport()

End Sub


here - “ _1“ datatable is dataset1
This is a C++ forum, not a Visual Basic forum. Ask your question elsewhere, like the MSDN forums.
Topic archived. No new replies allowed.