I used to have this code in Visual Basic:

rpt.ParameterFields.GetItemByName("RowDate").AddCurrentValue CDate("2010-03-19")

and I cannot figure out into what I have to convert date to make eatable for COM.

Any suggestions?

link|improve this question

Could you describe what it should do with the "2010-03-19" string? – eumiro Oct 19 '10 at 14:17
Eumiro, It shoould convert date string into COM date representation in the same way like CDate does... BTW found answer. – Rafal Ziolkowski Oct 19 '10 at 14:20
feedback

1 Answer

up vote 1 down vote accepted

Ok, found solution. Bellow is python equivalent:

rpt.ParameterFields.GetItemByName("RowDate").AddCurrentValue(datetime.datetime.strptime('2010-03-19', "%Y-%m-%d").date())

Approach is the same like in: http://stackoverflow.com/questions/2803852/python-date-string-to-date-object

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.