I would like to send my dates(startDate,endDate) to CR from VB.NET but i am getting a problem with showing the report after creating the parameterfileds.

I Add a New Parameter dteStart(no prompting text,type string ).

Ok. from my form i try to pass values to it like this.
VB Code:
  1. rdReport.ParameterFields.Item(1).CurrentValues.Clear()
  2. rdReport.ParameterFields.Item(1).CurrentValues.AddValue(Me.dteStart.txt)
At first i thought it was the way i was passing values to it that kept it prompting me to enter the values,but when i comment the above code, it still prompts me.

What i need to know is the way am creating parameterFields the right way!!
Any Help.