找不到类型或命名空间名称“ReportDocument”(是否缺少 using 指令或程序集引用?)
出错的代码如下: #region 绑定报表/// <summary>
/// 绑定报表
/// </summary>
/// <param name="P_str_creportName">报表名称</param>
/// <param name="P_str_sql">SQL语句</param>
/// <returns>返回ReportDocument对象</returns>
public ReportDocument CrystalReports(string P_str_creportName, string P_str_sql)
{
ReportDocument reportDocument = new ReportDocument();
string P_str_creportPath = Application.StartupPath.Substring(0, Application.StartupPath.Substring(0,
Application.StartupPath.LastIndexOf("\\")).LastIndexOf("\\"));
P_str_creportPath += @"\SumManage\CReportFile\" + P_str_creportName;
reportDocument.Load(P_str_creportPath);
reportDocument.DataDefinition.RecordSelectionFormula = P_str_sql;
return reportDocument;
}
#endregion
我是初学者,还请各位老师多多帮忙!
--------------------编程问答-------------------- using CrystalDecisions.ReportSource;
引用了吗? --------------------编程问答-------------------- 引用了 --------------------编程问答-------------------- 这个问题我解决了,可是又有了新的问题:
错误 1 无法将文件“obj\Debug\LYGL.Properties.Resources.resources”复制到“obj\Debug\LYGL.obj.Debug.LYGL.Properties.Resources.resources”。未能找到文件“obj\Debug\LYGL.Properties.Resources.resources”。
这是怎么回事啊?请老师教我!
--------------------编程问答-------------------- 在你引用的dll右击>属性>复制本地>false OK --------------------编程问答-------------------- --------------------编程问答-------------------- 学习中吼吼!!! --------------------编程问答-------------------- 我也出现这个错误
解决方法是 吧不用的饿文件、文件夹 排除在这个项目中(使用VSS) --------------------编程问答--------------------
楼主您的第一个问题是怎么解决的? --------------------编程问答-------------------- 找不到类型或命名空间名称“Document”(是否缺少 using 指令或程序集引用?)
我都是有这个错误,,,什么解决啊楼主 --------------------编程问答-------------------- 会不会是VS2010才有的啊?? --------------------编程问答-------------------- 用这个“using CrystalDecisions.CrystalReports.Engine;”试试
补充:.NET技术 , C#