Hi.
Am doing a report where depending on the Language of the Purchaser, i will be sending him a letter in his language.
using GLOBALLANGUAGE or CurrReport.Language works fine for textboxes,labels..
but what if i have a variable which is converting a number to text format, eg 234 EUR becomes TWO HUNDRED AND THIRTY FOUR EURO
How do i go around converting this text in other languages.
when i use GLOBALLANGUAGE - for conversion to french , i get smthing like this TWO CENT ET THIRTY FOUR EURO.
Comments
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
because every language is different in the way numbers are handled, so
each language would need its own conversion functions.
If the german "234" would be directly translated, it would read "TWOHUNDREDFOURANDTHIRTY" which could lead to some confusion.
I changed my text, based on the language which am going to use.
in fact am going to use only english n french..
Thank u guys..