Group Footer Band - Help
How can i connect the group band data in vb net??
An example, in this mode i connect the band of the detail data:
Report.Dictionary.Clear()
Report.RegisterData(Dataset, Table_Name)
Databand = Report.FindObject("Data1")
Databand.DataSource = l_Report.GetDataSource(Table_Name)
Now, i must to connect the group footer data?
How can i do it???
Thank
An example, in this mode i connect the band of the detail data:
Report.Dictionary.Clear()
Report.RegisterData(Dataset, Table_Name)
Databand = Report.FindObject("Data1")
Databand.DataSource = l_Report.GetDataSource(Table_Name)
Now, i must to connect the group footer data?
How can i do it???
Thank
Comments
in this mode:
Report.RegisterData(Dataset.tables(0), Table_Name)
Databand = Report.FindObject("Data1")
Databand.DataSource = l_Report.GetDataSource(Table_Name)