27 lines
555 B
C#
27 lines
555 B
C#
using CrystalDecisions.CrystalReports.Engine;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace UWS
|
|
{
|
|
public partial class DailyReport : Form
|
|
{
|
|
public DailyReport()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
public void ShowReport(ReportDocument report)
|
|
{
|
|
CRV.ReportSource = report;
|
|
Show();
|
|
}
|
|
}
|
|
}
|