Jump to content

Recommended Posts

Posted

I need to get the language version of the operating system in my code for an MS Access 2000 module. Can I use the autoIt macro @OSlang in my vba code (using autoitx) and how to do that.

Thanx in advance

Posted

AutoIt uses the following code for @OSLang, so you could just read the appropriate registry key:

if ( g_oVersion.IsWinNT() == true )
            {
                if ( g_oVersion.IsWin2000orLater() == true )
                    Util_RegReadString(HKEY_LOCAL_MACHINE,"SYSTEM\\CurrentControlSet\\Control\\Nls\\Language", "InstallLanguage", _MAX_PATH, szValue);
                else      // WinNT4
                    Util_RegReadString(HKEY_LOCAL_MACHINE,"SYSTEM\\CurrentControlSet\\Control\\Nls\\Language", "Default", _MAX_PATH, szValue);

                vResult = szValue;
            }

            else         // Win9x
            {
                Util_RegReadString(HKEY_USERS,".DEFAULT\\Control Panel\\Desktop\\ResourceLocale", "", _MAX_PATH, szValue);
                vResult = &szValue[4];
            }

            break;
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...