Home > Software engineering >  Vb can't show the unicode?
Vb can't show the unicode?

Time:10-10

Dim stra as sttring
A="Kyyhkysm? Ki 3 B 20 "


This code kao to vb code, can't display properly? "" , will become the "?"

Dim stra as sttring
A="Kyyhkysm? Ki 3 B 20 "

Why is this?

CodePudding user response:

Title you don't have the reasons why, vb source code are stored in with ANSI text, the support of the ANSI character, of course, can not directly enter inside the code,

CodePudding user response:

Use Byte () to store, use RichEdit control display,

CodePudding user response:

Check? ASW is how much, then use ChrW back again, to display properly to Unicode controls such as Richedit,
  • Related