07-08-2007, 12:41 PM
I found the reason. Some dll (maybe database components) running in QM context sets French locale for msvcrt.dll. QM string-to-number functions depend on it (starting from some QM 2.2.0.x version). They fail to convert numbers containing . if French locale is set.
In the next version, I'll make QM independent from such changes.
I recommend to do the following (until next QM version will be released):
Create function RestoreNumericLocale and paste this code:
At the beginning of the macro that you think is changing locale insert
---
To view current locale settings, can be used this code:
Normally (soon after QM starts) it should display something like
LC_COLLATE=French_France.1252;LC_CTYPE=French_France.1252;LC_MONETARY=C;LC_NUMERIC=C;LC_TIME=French_France.1252
You can execute this code to discover which macro changes default locale.
In the next version, I'll make QM independent from such changes.
I recommend to do the following (until next QM version will be released):
Create function RestoreNumericLocale and paste this code:
At the beginning of the macro that you think is changing locale insert
---
To view current locale settings, can be used this code:
Normally (soon after QM starts) it should display something like
LC_COLLATE=French_France.1252;LC_CTYPE=French_France.1252;LC_MONETARY=C;LC_NUMERIC=C;LC_TIME=French_France.1252
You can execute this code to discover which macro changes default locale.