cancel
Showing results for 
Search instead for 
Did you mean: 

How do I display crystal report special fields in arabic?

Former Member
0 Kudos

Hello,

How do I dispay the special fieds such as Page N of M, Print Date etc in Arabic like the way it display in English?

I can display and generate fine with other arabic content.

Is there any way that crystal report can do automatically?

Thanks

Yin

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You can construct page information manually. Example below. Translate in Arabic whatever needs to be translated. You want to use the built in keywords PageNumber and TotalPageCount .

"Page " & ToText(PageNumber, 0) & " Of " & ToText(TotalPageCount, 0);

ToText() to prevent numbers with decimal places. You could translate the words "Page" and "Of" in Arabic for example.

Keep making formulas like this for printdate as well for example: combine currentdate in your formula with Arab text in it if you like.

Oh, and then place it in the page header ofcourse!

Answers (0)