In my danish version of microsoft Access 2000 I have an odd problem:
If I type the following in the imediate window I get a true result.
print "Æ"="AE"
true
Is is possible to disable this language setting? so that I get a FALSE result?
It is very important for my data that "Æ" is not equal to "AE" as I have an identifier (index) that contains "Æ".
I have tried changing my international setting in the control panel to English, but it still dosn't help.
my workaround has been to use:
strcomp("Æ","æ",vbBinaryCompare)=0
But this is very impractical in code and slow too.
If I type the following in the imediate window I get a true result.
print "Æ"="AE"
true
Is is possible to disable this language setting? so that I get a FALSE result?
It is very important for my data that "Æ" is not equal to "AE" as I have an identifier (index) that contains "Æ".
I have tried changing my international setting in the control panel to English, but it still dosn't help.
my workaround has been to use:
strcomp("Æ","æ",vbBinaryCompare)=0
But this is very impractical in code and slow too.