i create form multi language in vb. now i do want last language changed save in ini file.
and again open application show last language.
i create form multi language in vb. now i do want last language changed save in ini file.
and again open application show last language.
I would prefer preserving the data to xml file or DB rather than in ini file.
Anyway for ini file, You need to use the Win32 API WritePrivateProfileString
and GetPrivateProfileString
. Refer the link1 or link2. You can place the code in module or read it in Form Load event and save it on Form Unload/close event.