OEMコードページの識別子を取得          <TOP>


GetOEMCP OEMコードページの識別子を取得
 

 

'================================================================
'= OEMコードページの識別子を取得
'=    (GetOEMCP.bas)
'================================================================
#include "Windows.bi"

' システムで現在有効になっている OEM コードページの識別子を取得
Declare Function Api_GetOEMCP& Lib "kernel32" Alias "GetOEMCP" ()

Var Shared Text1 As Object
Var Shared Text2 As Object
Var Shared Button1 As Object

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

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

    Ret = Api_GetOEMCP()

    Text2.SetWindowText Str$(Ret)   
End Sub

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