Walkthrough: KeepTogether Options
ActiveReports allows you to set KeepTogether options for your reports so that group detail is kept together on one page when printed.
This walkthrough illustrates how to set the KeepTogether and GroupKeepTogether options to allow all group detail to print together on one page.
This walkthrough is split up into the following activities:
- Adding an ActiveReport to a Visual Studio project
- Connecting the report to a data source
- Adding controls to the report to contain data
- Viewing the report
To complete the walkthrough, you must have access to the NorthWind database (NWind.mdb).
When you have completed this walkthrough, you will have a report that looks similar to the following.
Adding an ActiveReport to a Visual Studio project
To add an ActiveReport to your project
- Open a new project in Visual Studio.
- Click on Project > Add New Item.
- Select ActiveReports file and rename the file rptKeepTG.
- Click Open.
Connecting the report to a data source
To connect the report to a data source
- Click on the yellow report DataSource icon in the Detail section. This brings up the report DataSource dialog box.
- Click on Build...
- Select Microsoft Jet 4.0 OLE DB Provider and click Next >>
- Click on the ellipsis to browse for the access path to NWind.mdb. Click Open once you have selected the appropriate access path.
- Click OK to continue.
- In the Query field, type "SELECT DISTINCTROW Orders.*, [Order Details].*, Products.* FROM Products INNER JOIN (Orders INNER JOIN [Order Details] ON Orders.OrderID = [Order Details].OrderID) ON Products.ProductID = [Order Details].ProductID order by orderdate".
- Click OK to return to the report design surface.
Adding controls to the report to contain data
To add controls to the report
- Add a GroupHeader/Footer section to rptKeepTG (see Grouping Data for help).
- Make the following changes to the group header:
- Change the name to ghOrders
- Change the DataField to OrderDate
- Change the GroupKeepTogether property to All
- Change the KeepTogether property to True
- Add the following controls to the GroupHeader section:
Control |
Name |
Text/Caption |
Location |
Label |
lblOrderDate |
Order Date |
0, 0 |
Label |
lblOrderID |
Order ID |
1.125, 0 |
Label |
lblProductName |
Product Name |
2.239, 0 |
Label |
lblQuantity |
Quantity |
3.5, 0 |
Label |
lblUnitPrice |
Unit Price |
4.75, 0 |
- Add the following controls to the Detail section:
Control |
DataField |
Name |
Text/Caption |
Location |
Output Format |
TextBox |
orders.OrderID |
txtOrderID |
Order ID |
1.125, 0 |
(Empty string) |
TextBox |
ProductName |
txtProductName |
Product Name |
2.260, 0 |
(Empty string) |
TextBox |
products.UnitPrice |
txtUnitPrice |
Unit Price |
4.75, 0 |
Currency |
TextBox |
OrderDate |
txtOrderDate |
Order Date |
0, 0 |
(Empty string) |
TextBox |
Quantity |
txtQuantity |
Quantity |
3.5, 0 |
(Empty string) |
Viewing the report
To view the report
- Add the ActiveReports viewer control to a Windows Form.
- Add the code needed to set the viewer document equal to the report document. See Using the ActiveReports WinForm Viewer for help.
Samples | Walkthroughs | Grouping Data | GroupKeepTogether enumeration
Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.