Hi,
I am using Progress 8.3b on Windows NT, and I have a problem with the decimal point character. Consider the following piece of code:
def var a as char init "1.67".
def var b as dec.
b = dec(a).
display a b.
This displays the following:
a = 1.67
b = 167 (??)
I have already found out that the decimal point character setting in Progress is set to "," which is causing the problem. It should be set to ".". But where do I change it? Is this a parameter in Progress, or a NT setting?
Appreciate your help!
I am using Progress 8.3b on Windows NT, and I have a problem with the decimal point character. Consider the following piece of code:
def var a as char init "1.67".
def var b as dec.
b = dec(a).
display a b.
This displays the following:
a = 1.67
b = 167 (??)
I have already found out that the decimal point character setting in Progress is set to "," which is causing the problem. It should be set to ".". But where do I change it? Is this a parameter in Progress, or a NT setting?
Appreciate your help!