G
Guillem
The following code :
dim xBoolean as boolean
dim rst as recordset
......
open rst etc..
.....
..filter = "[xBoolean]= " & xBoolean
when this is used in a w2000/msaccess2000 spanish environment, (maybe for
other languages too)
gives you "[xBoolean]=falso" not the correct one "[xBoolean]=false" and
..filter gives you a "Type Mismatch" error.
I would need to convert each boolean variable like :
..filter = "[xBoolean]= " & CInt(xBoolean ) which gives "[xBoolean]=0"
but is there something to configure in access to bypass this
"characteristique"?
Thanks a lot
Guillem
dim xBoolean as boolean
dim rst as recordset
......
open rst etc..
.....
..filter = "[xBoolean]= " & xBoolean
when this is used in a w2000/msaccess2000 spanish environment, (maybe for
other languages too)
gives you "[xBoolean]=falso" not the correct one "[xBoolean]=false" and
..filter gives you a "Type Mismatch" error.
I would need to convert each boolean variable like :
..filter = "[xBoolean]= " & CInt(xBoolean ) which gives "[xBoolean]=0"
but is there something to configure in access to bypass this
"characteristique"?
Thanks a lot
Guillem