Feb 22, 2002 #1 vlad2 Programmer Jan 9, 2002 56 US I created report based on SP, which takes two params,(FromDate ----TODAte)Could anybody give me an example how to send paramenters from vb. Thanks in advance..
I created report based on SP, which takes two params,(FromDate ----TODAte)Could anybody give me an example how to send paramenters from vb. Thanks in advance..
Feb 23, 2002 #2 gurlfob Programmer Oct 29, 2001 35 US There is a property called parameterfields in the RDC library. It shud be something like this: <font color=blue> Private Report as Craxdrt.Report Report.parameterfields(1).AddCurrentValue FromDate Report.ParameterFields(2).AddCurrentValue ToDate Upvote 0 Downvote
There is a property called parameterfields in the RDC library. It shud be something like this: <font color=blue> Private Report as Craxdrt.Report Report.parameterfields(1).AddCurrentValue FromDate Report.ParameterFields(2).AddCurrentValue ToDate
Feb 25, 2002 Thread starter #3 vlad2 Programmer Jan 9, 2002 56 US thanks.. it works!!! Upvote 0 Downvote