Setting Thread Culture in VB6

前端 未结 2 998
野趣味
野趣味 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: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).

提交回复
热议问题