Setting Thread Culture in VB6

前端 未结 2 995
野趣味
野趣味 2021-01-23 07:45

Is there a VB6 equivalent of the following C# code?

Thread.CurrentThread.CurrentCulture = new CultureInfo(\"en-US\")

相关标签:
2条回答
  • 2021-01-23 08:08

    Use Windows API function SetThreadLocale instead

    0 讨论(0)
  • 2021-01-23 08:09

    There is no in built multi-lingual support in VB6, to internationalize VB 6 you need to use resource files and translate your app for each language and loadresstring for all your strings. VB 6 does have unicode support when using Microsoft Forms 2.0 controls (fm20.dll).

    0 讨论(0)
提交回复
热议问题