I work in C#, so I don't have any VB.NET samples, but here's what I do to set the parameters:
myRpt.ParameterFields["MyParam"].AllowCustomValues = true;
myRpt.ParameterFields["MyParam"].CurrentValues.Clear();
myRpt.ParameterFields["MyParam"].CurrentValues.AddValue(myValue);
I only use the parameter definition stuff when I'm scheduling a report that's in BusinessObjects and I'm dealing with a Report object instead of a ReportDocument object.
-Dell