30 lines
853 B
C#
30 lines
853 B
C#
namespace EnVisage.Reports
|
|
{
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
using Telerik.Reporting;
|
|
using Telerik.Reporting.Drawing;
|
|
|
|
/// <summary>
|
|
/// Summary description for PlannedProjects.
|
|
/// </summary>
|
|
public partial class PlannedProjects : Telerik.Reporting.Report
|
|
{
|
|
public static string PrevuReportGroupName = "Projects by Client";
|
|
public static string PrevuReportName = "Planned Projects";
|
|
public static int PrevuReportPosition = 1;
|
|
public PlannedProjects()
|
|
{
|
|
//
|
|
// Required for telerik Reporting designer support
|
|
//
|
|
InitializeComponent();
|
|
|
|
//
|
|
// TODO: Add any constructor code after InitializeComponent call
|
|
//
|
|
}
|
|
}
|
|
} |