-1

高棉unicode字符串与其他unicode字符不同,我们不能在Excel或MS Access的VBA编辑器上编写它。

如何声明变量并分配高棉 unicode 字符串?

4

1 回答 1

0

当然,请参阅在 excel 中在 vba 中声明 unicode 字符串的答案,以帮助我们回答 Excel VBA 中的高棉 unicode 问题。

我使用工具:http ://rishida.net/tools/conversion/将高棉 unicode 字符串转换为十六进制,然后我添加到每个十六进制以通过 &H 在 VBA 中使用。

写入示例:ល.រ 到 VBA 变量中:

Dim myStr As String
myStr = ChrW(&H179B) & "." & ChrW(&H179A)

帖子中的更多详细信息:http: //ask.osify.com/qa/231

于 2013-04-19T07:23:45.450 回答