这是我发送给Crystal Report的公式:
string fromdt = dtpfrom.Value.ToString("yyyy-MM-dd");
string todt = dtpto.Value.ToString("yyyy-MM-dd");
string formular = "{tbl_ItemIssueNote.IsueDate} in (" + "'" + fromdt + "') to (" + "'" + todt + "')";
这适用于开发人员计算机和一些客户端计算机,但之前我曾使用过这样的日期格式:
string fromdt = dtpfrom.Value.ToString("yyyy,MM,dd");
但这会出现此错误:Failed to retrieve data from the data base
我正在使用VS2010,C#和Crystal Report CRforVS_13_0_5
以及.NET Framework x64和x32的运行时引擎。
答案 0 :(得分:0)
使用谷歌我发现SAP的这个链接: http://help.sap.com/businessobject/product_guides/errors/12/0/en/html/topic180.html。
检查一下,看看你是否能发现从数据库中获取数据的方式有什么问题。
干杯