Экспорт отчета Crystal в файл Notepad с каждой записью отчета в определенной строке в блокноте
Я создаю отчет cystal в кодировке C#, который хочу экспортировать в файл Notepad с каждой записью Crystal Report в определенной строке файла Notepad.
то, что я делаю, это ?
rptEmployeeOPRCreditReport SCR = new rptEmployeeOPRCreditReport(); SCR.SetDataSource(ds); SCR.VerifyDatabase(); SCR.SetParameterValue("pKey", pKey); SCR.SetParameterValue("WType", WType); SCR.SetParameterValue("Reff", Reff); SCR.SetParameterValue("dtFrom", StrStartDate); SCR.SetParameterValue("dtTo", StrLastDate); crystalReportViewer1.ReportSource = SCR; ExportOptions ExOpt = new ExportOptions(); ExOpt.ExportFormatType = ExportFormatType.RichText; ExOpt.ExportDestinationType = ExportDestinationType.DiskFile; DiskFileDestinationOptions destination = new DiskFileDestinationOptions(); destination = ExportOptions.CreateDiskFileDestinationOptions(); string strFileName = "OPR" + strCurrentMonth + strCurrentYear + ".txt"; destination.DiskFileName = "d:\\" + strFileName; ExOpt.ExportDestinationOptions = destination; SCR.Export(ExOpt);
Он создает файл Блокнота, Но данные в файле мне непонятны. ПЛЗ, ПОМОГИТЕ КОМУ-НИБУДЬ.