Example #1
0
 private void btnNVtheoNamLV_LinkClicked(object sender, DevExpress.XtraNavBar.NavBarLinkEventArgs e)
 {
     //ReportDocument cryRpt = new ReportDocument();
     //string[] _str = Application.StartupPath.Split('\\');
     //string path = String.Join("\\", _str.Take(_str.Count() - 2).ToArray());
     //cryRpt.Load(path + @"\Report\rpNhanVienTheoNamLV.rpt");
     //crv.ReportSource = cryRpt;
     //cryRpt.Refresh();
     //crv.Refresh();
     var rp = new Report.rpNhanVienTheoNamLV();
     CrystalDecisions.Shared.TableLogOnInfo info;
     info = rp.Database.Tables[0].LogOnInfo;
     info.ConnectionInfo.ServerName = "192.168.1.39";
     info.ConnectionInfo.DatabaseName = "QLKS";
     rp.Database.Tables[0].ApplyLogOnInfo(info);
     rp.ReportOptions.EnableSaveDataWithReport = false;
     crv.ReportSource = rp;
 }
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     rpNhanVienTheoNamLV rpt = new rpNhanVienTheoNamLV();
     rpt.Site = this.Site;
     return rpt;
 }