G
Guest
In my VB code I use chr(34) to create a double quote in my filter criteria as follows
Me.Filter = "Field_Name = " & chr(34) & txtFieldName & chr(34
In some client pc it works fine, but in others it failed since their system translate this chr(34) expression as "|" character not as double quote character
Any ideas to handle this error very appreciate
Gabriel
Me.Filter = "Field_Name = " & chr(34) & txtFieldName & chr(34
In some client pc it works fine, but in others it failed since their system translate this chr(34) expression as "|" character not as double quote character
Any ideas to handle this error very appreciate
Gabriel