Skip to main content
A newer version of this page is available. .

Display the Current Date and Time in a Report

This tutorial demonstrates how to insert the current system date and time into a report using the XRPageInfo control.

HowTo - InsertDateTime_2

Do the following to include information about the current date and time into a report:

  1. In the Visual Studio Report Designer, switch to the Field List, select the ProductName and UnitPrice fields, and drag-and-drop them onto the report’s Detail band.

    HowTo - FilterDataReportLevel_0

  2. Typically, the current date and time are displayed within the Report Header band. To add it to the report, right click anywhere on the report’s surface. In the invoked menu, point to Insert Band and click ReportHeader.

    Shared_BandsAddReportHeader

  3. Drop the XRPageInfo control from the DX.19.2: Report Controls Toolbox tab onto the ReportHeader band.

    HowTo - InsertUserName_0

  4. Set the control’s XRPageInfo.PageInfo property to DateTime (e.g. using its smart tag).

    HowTo - InsertDateTime_0

  5. To apply a format string to the control’s contents, type Created at {0:h:mm tt dd MMMM yyyy} into its XRPageInfo.Format property.

    HowTo - InsertDateTime_1

See Also