I am having a table named as bill and i wanted to generate crystal report for invoice purpose,and report will contain Sr.No,ProductName, Weight, Rate, Total ,VAT and a final GrandTotal as final amount sum of the Total of multiple product.Bill will be generating based on SrNo which will be coming from a different form, Back is MS-Access. Billl will be generating like a formal bill with multiple product details and vat and sum of those products and VAT at the end .someone plz help me ...Thanks in advance..
adp = New OleDbDataAdapter("Select * from Bills where [SrNo]=" + Sales.txtSrNo.Text + "", con)
dt.Tables.Clear()
adp.Fill(dt, "Bills")
Dim rpt As ReportClass
rpt = New CrystalReportBill
rpt.SetDataSource(dt)
CrystalReportViewer1.ReportSource = rpt