Is there a VB6 equivalent of the following C# code?
Thread.CurrentThread.CurrentCulture = new CultureInfo(\"en-US\")
Use Windows API function SetThreadLocale instead
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).