Extended Character Set

  • Thread starter Thread starter The Wizard
  • Start date Start date
T

The Wizard

Anyone know a solution to this, On Access 2000/2002 and Win 2000/XP systems
in the keypress event I am trying to change the double quote mark (ascii #
34) to an open quote (ascii # 147). On win 98/ME systems my code works fine
but on 2000/XP all I get is a box character. Any Ideas

Gregory La Due
Twin Tiers Technologies, Inc.
 
The Wizard said:
Anyone know a solution to this, On Access 2000/2002 and Win 2000/XP systems
in the keypress event I am trying to change the double quote mark (ascii #
34) to an open quote (ascii # 147). On win 98/ME systems my code works fine
but on 2000/XP all I get is a box character. Any Ideas

Chr(147) works fine in Access 20002 on Windows XP Pro SP1 on my machines.

I do get a box character in non Unicode (Access 97) versions.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
The problem is not with chr$ command but in the keypress event on a form and
changing the (KeyAscii As Integer) from 34 to 147
 
Back
Top