GetKeyboardLayoutList

    GetKeyboardLayoutList - System의 Keyboard Layout목록 반환

    GetKeyboardLayoutList는 Windows System에 설치된 모든 Keyboard의 Layout목록을 반환합니다. Declare Function GetKeyboardLayoutList Lib "user32" Alias "GetKeyboardLayoutList" (ByVal nBuff As Integer, ByRef lpList As Integer) As Integer ▶VB.NET 선언 Dim kbl(255) As Integer GetKeyboardLayoutList(254, kbl(0)) ▶VB.NET 호출 [System.Runtime.InteropServices.DllImport("user32.dll")] private static extern int GetKeyboardLayoutL..