Class TOvrDbEdit (unit ODBEdit) |
Inherits from
TDbEdit
constructor Create(AOwner: TComponent);
destructor Destroy;
--------------------------------------------------
function GetInsertKeyState: TInsertKeyStates;
--------------------------------------------------
procedure KeyDown(var Key: Word; Shift: TShiftState);
--------------------------------------------------
procedure KeyPress(var Key: Char);
--------------------------------------------------
procedure WndProc(var Message: TMessage);
On Windows 95 Tradition Chinese Version, users use the IME
(input method editor) keyin the Chinese word.
procedure WMChar(var Msg: TWMKey);
--------------------------------------------------
property TabOnEnter : boolean
property InsertKeyState : TInsertKeyStates
FInsertKeyState : boolean;
FTabOnEnter : boolean;
constructor Create(AOwner: TComponent);
destructor Destroy;
--------------------------------------------------
function GetInsertKeyState: TInsertKeyStates;
--------------------------------------------------
procedure KeyDown(var Key: Word; Shift: TShiftState);
--------------------------------------------------
procedure KeyPress(var Key: Char);
--------------------------------------------------
procedure WndProc(var Message: TMessage);
On Windows 95 Tradition Chinese Version, users use the IME
(input method editor) keyin the Chinese word. But if Dataset
is in Browse mode, the IME couldn't appear, so I override the
WndProc to solve this problem.
-------------------------------------------------- *) {$ifdef Win32
procedure WMChar(var Msg: TWMKey);
--------------------------------------------------
property TabOnEnter : boolean
property InsertKeyState : TInsertKeyStates
FInsertKeyState : boolean;
FTabOnEnter : boolean;