システムの既定言語識別子を取得          <TOP>


GetSystemDefaultLangID システムの既定言語識別子を取得

 

システムの言語識別子であるから、下図のように変更しても識別子は1041(日本)である。

 

 

参考

ユーザーの既定言語識別子を取得

 

'================================================================
'= システムの既定言語識別子を取得
'=    (GetSystemDefaultLangID.bas)
'================================================================
#include "Windows.bi"

' システムの既定言語識別子を取得
Declare Function Api_GetSystemDefaultLangID% Lib "Kernel32" Alias "GetSystemDefaultLangID" ()

Var Shared Text1 As Object
Var Shared Button1 As Object

Text1.Attach GetDlgItem("Text1") : Text1.SetFontSize 14
Button1.Attach GetDlgItem("Button1") : Button1.SetFontSize 14

'================================================================
'=
'================================================================
Declare Sub Button1_on edecl ()
Sub Button1_on()
    Var Ret As Long

    Ret = Api_GetSystemDefaultLangID()

    Text1.SetWindowText "言語識別子:" & Str$(Ret)
End Sub

'================================================================
'=
'================================================================
While 1
    WaitEvent
Wend
Stop
End