1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15:
Public Class SubreportProcessingEventArgs Inherits EventArgs Public Sub New(ByVal ds As DataSet) m_ds = ds End Sub Private m_ds As DataSet Public ReadOnly Property DataSet Get Return m_ds End Get End Property End Class