I have a method for examples
Private Sub SubreportFinancialAssistan
ceTypes(By
Val sender As Object, ByVal e As SubreportProcessingEventAr
gs)
'some database calculation inside this method
End Sub
I call this method in VB.NET as
AddHandler rptViewer1.LocalReport.Sub
reportProc
essing, AddressOf SubreportFinancialAssistan
ceTypes
I need to make the SubreportFinancialAssistan
ceTypes method generic and I need to pass a dataset to this method. The dataset will be a third parameter..Can I do that and how to do???
Start Free Trial