Setting up theme culture in VB6

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

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

+2


source to share


2 answers


Use Windows API function SetThreadLocale

instead



+4


source


There is no built-in multilingual support in VB6, to internationalize VB 6 you need to use resource files and translate the application for each language and load a string for all your strings. VB 6 has Unicode support when using Microsoft Forms 2.0 controls (fm20.dll).



+1


source







All Articles