Hi guys,
I am making a report using CR for the first time. Everything went smooth till now.
There is something i want to do but don't know how. First thing: In my table, there is a field that return numbers from 1 to 6 . Which one suppose to mean a letter type. I can't show the numbers in the report. I have to write a code for it which shows which number means what.
I figure out that i can use this simple code to make changes to rows:
Code:
 Dim row As DataRow
        For Each row In DaftarDataSet.Tables("tbldaftar").Rows
            row("FldSdate") = PersianDate(row("FldSDate"))
        Next row
This code works for changing values if type of the variable on the both side are equal. For example if i want to change the field I have mentioned above, It returns the error 'Couldn't Store <blabla> .... expected type is int32'.
So I thought I have to use a special field, unbound field or something which i am not familiar with any or how to give them values.

How should I solve this ?