hi.
DateTime now = new DateTime( GET_TABEL_REPORTNEW.B2 , GET_TABEL_REPORTNEW.B1 , day );
B2 and B1 are int fields.
when i compile it makes such error - " cannot convert from decimal to int "
cannot convert from decimal to int
cannot convert from decimal to int
Are B1 and B2 set as decimal fields in your data source?
What data type is day?
What data type is day?
cannot convert from decimal to int
I just solved
DateTime now = new DateTime( (int)GET_TABEL_REPORTNEW.B2 , (int)GET_TABEL_REPORTNEW.B1 , day );

DateTime now = new DateTime( (int)GET_TABEL_REPORTNEW.B2 , (int)GET_TABEL_REPORTNEW.B1 , day );

cannot convert from decimal to int
Hello,
Let us know if you need any additional help.
Thank you.
Let us know if you need any additional help.
Thank you.