Snake.woo
22nd May 2012, 09:30
We've just use the Infor10 and SSRS report in our company. we have a requirement for bilingual SSRS report. we want have English and Chinese in the report.
how can we to do this?
JaapJD
23rd May 2012, 14:32
Do you mean that you want both English and Chinese labels (coming from server) or hardcoded text in the report design?
JaapJD
23rd May 2012, 14:40
If you need labels in other language then the original report language you can add an additional function to the custom code of the report:
Function tt_getLabel_english(ByVal code As String, ByVal length As Integer, ByVal height As Integer) As String
return Infor.ReportingServices.Utilities.LNUtils.GetLabelValue(code, _
'en-us', _
Report.Parameters!ConnectionString.Value, _
length, _
height)
End Function
And call this function to get the label.