vbs:更改代码页

发布于 2024-12-05 07:57:07 字数 192 浏览 3 评论 0原文

我有在桌面上运行的 vbs。

由于某种原因,Asc(Chr(148)) 在 JPN 窗口中返回 -32443。 我在 ENG windows 上没有这个问题。 我发现这里发布了类似的问题,但它是针对 .net vb

有没有办法更改 vbs 的代码页? 我在运行脚本的cmd窗口上尝试了chcp,但它没有做任何事情。

谢谢。

I have vbs that I run on my desktop.

For some reason, Asc(Chr(148)) returns -32443 in JPN windows.
I don't have this issue on ENG windows.
I found similar issue posted here but it was for .net vb

Is there a way to change codepage of vbs?
I tried chcp on the cmd window i run the script but it didn't do anything.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狼亦尘 2024-12-12 07:57:07

我认为是由于默认的区域设置 id。尝试设置区域设置 ID。

'Test the default locale id

WScript.Echo GetLocale 'most likely prints 1041

'Set Locale id

SetLocale 1033 'en-US
WScript.Echo Asc(Chr(148))

I think due to default locale id. Try to set the locale id.

'Test the default locale id

WScript.Echo GetLocale 'most likely prints 1041

'Set Locale id

SetLocale 1033 'en-US
WScript.Echo Asc(Chr(148))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文