本文介绍了在VB.NET中使用存储过程运行Crystal报表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 使用以下SP运行CR报告的VB语法是什么? 我使用CrystalreportViewer和ReportDocument。 谢谢 Bill 这里是SQLserver 2K中的SP: CREATE proc mysp_ReportSubmission @salesdate as varchar(20) , @inflag as bit AS if @inflag = 0 select * from不活动的站点= 0 和stationid不在 (从交易中选择stationid ,其中transdate = @salesdate) 其他 选择*来自车站,其中无效= 0 和stationid in (选择来自交易 其中transdate = @salesdate) GO What''s the VB syntax to run the CR report using the following SP?I use CrystalreportViewer and ReportDocument.ThanksBillHere''s the SP in SQLserver 2K: CREATE proc mysp_ReportSubmission@salesdate as varchar(20),@inflag as bitASif @inflag = 0 select * from station where inactive = 0and stationid not in(select stationid from transactionswhere transdate = @salesdate) else select * from station where inactive = 0and stationid in(select stationid from transactionswhere transdate = @salesdate) GO推荐答案 这篇关于在VB.NET中使用存储过程运行Crystal报表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-21 05:18