[求助]怎样将VB的一个变量值传送给水晶报表作为查询条件?
VB中有一变量作为查询的条件,日期。就是说我需要查询某日的所有记录,并通过水晶报表打印出来。水晶报表我已经设计好各个字段的.rpt文件。请问这个变量值如何传给水晶报表?谢谢!我对水晶报表刚刚认识。
Dim CT_App As New Application
Dim CT_Res As New Report
Set CT_Res = CT_App.OpenReport(App.Path & "\Report.rpt")
CT_Res.SQLQueryString = "select * from table where id='"&text1.text &"'"
CRViewer91.ReportSource = CT_Res
CRViewer91.ViewReport