Delphi是Borland公司的一種面向對象的可視化軟件開發工具
Delphi集中了Visual C + +和Visual Basic兩者的優點
Delphi中的消息
消息是Windows發出的一個通知
在Delphi中消息以TMessage記錄的方式定義
type
TMessage = packed record
Msg: Cardinal;
case Integer of
LParam: Longint;
Result: Longint);
WParamHi: Word;
LParamLo: Word;
LParamHi: Word;
ResultLo: Word;
ResultHi: Word);
end;
其中
Result是消息處理的返回值
在Delphi中除了通用的Tmessage外
TWMKey = packed record
Msg: Cardinal;
CharCode: Word;
Unused: Word;
KeyData: Longint;
Result: Longint;
與鍵盤相關的消息如
TWMChar = TWMkey
TWMkey
TWMkey
[
From:http://tw.wingwit.com/Article/program/Delphi/201311/24883.html