程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> Delphi調用WinAPI: GetKeyboardType - 獲取鍵盤的類型信息

Delphi調用WinAPI: GetKeyboardType - 獲取鍵盤的類型信息

編輯:Delphi

//聲明:

GetKeyboardType(
 nTypeFlag: Integer {0:鍵盤類型; 1:鍵盤子類型; 2:功能鍵數量}
): Integer;

//舉例:

procedure TForm1.FormCreate(Sender: TObject);
var
 i: Integer;
 List: TStringList;
begin
 List := TStringList.Create;
 List.Add('IBM PC/XT or compatible (83-key) keyboard');
 List.Add('Olivetti "ICO" (102-key) keyboard');
 List.Add('IBM PC/AT (84-key) or similar keyboard');
 List.Add('IBM enhanced (101/102-key) keyboard');
 List.Add('Nokia 1050 and similar keyboards');
 List.Add('Nokia 9140 and similar keyboards');
 List.Add('Japanese keyboard');
 i := GetKeyboardType(0);
 ShowMessage(List[i-1]);  {我這裡返回: IBM enhanced (101/102-key) keyboard}
 i := GetKeyboardType(1);
 ShowMessage(IntToStr(i)); {這是廠商自定義數據, 這裡返回: 0}
 i := GetKeyboardType(2);
 ShowMessage(IntToStr(i)); {返回: 12; 就是指 F1..F12}
 List.Free;
end;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved