Is there any possibility to create an error message when a user tries to enter Greek Characters to a certain field(code20) ???
I have done something similar for char9,char10,char13 which works exceptionally but for this case NAV doesn't allow me to use values > 255 for Char Variables
Any ideas?
NAV 4 SP3
0
Answers
Code Page 1253 Windows Greek or Code Page 851 MS-DOS Greek 1.
Basically, if you don't find an encoding table specifically for NAV C/AL on the net, you will have to find out yourself. To do so, extract the character in question (use the Text variable as if it was an ARRAY of Char), then either print it using FORMAT(Chr,0,'<Number>'); or assign it to an integer variable.
Thanks for your time, i appreciate it!