Hi,
I am finding a way to convert the clarion month from english to dutch. The day of the weeks I did by the choose function, in what manner can I do this with month names like october to oktober (dutch)
Thanks!
Hi,
I am finding a way to convert the clarion month from english to dutch. The day of the weeks I did by the choose function, in what manner can I do this with month names like october to oktober (dutch)
Thanks!
Create a procedure that returns what you need, something like this:
MonthName PROCEDURE(BYTE pMonth) !- returns STRING
CODE
EXECUTE pMonth
RETURN '!st month in Dutch'
RETURN '2nd month in Dutch'
RETURN '3rd month in Dutch'
and so on 12 times
END
RETURN 'Invalid month number'
Hi,
I mean with the use of a real month in a date field. I want to return the full dutch date so âmonday 12 may 2019â must become âmaandag 12 mei 2019â
Thanks
EasyDotNet has this feature (convert datetime to any culture), for example I choosed ânlâ culture in the demo app and see date in Dutch):
What is returned when you use @d17 or @d18 formatting on a date field?
Hi I am getting now the english month names. I figured out how to get the week days in Dutch with Weekdag=CHOOSE(Pri:Datum_eerste_les % 7 + 1,âzondagâ,âmaandagâ,âdinsdagâ,âwoensdagâ,âdonderdagâ,âvrijdagâ,âzaterdagâ)
Maand = CHOOSE(MONTH(Pri:Datum_eerste_les),âjanuariâ,âfebruariâ,âmaartâ,âaprilâ,âmeiâ,âjuniâ,âjuliâ,âaugustusâ,âseptemberâ,âoktoberâ,ânovemberâ,âdecemberâ)
Thanks! That did the trick.. how simple ![]()
I know Iâm late, but you have the CLAMON and CLAMONTHâŚ
Look for them on the help and also for LOCALE..