|
You
need to handle the CMDialogKey message to handle the TAB.
procedure CMDialogKey(var Message: TCMDialogKey); message
CM_DialogKey;
...
procedure TfWhatever.CMDialogKey(var Message:
TCMDialogKey);
begin if (Message.CharCode = VK_TAB) and (ActiveControl = eLastEditoronFirstTab) then begin pcPageControl.ActivePage :=
tsPage2;
end;
inherited; end;
|
Title: Message
- [DUG]: Tab across TabSheets Allan, Samuel
- RE: [DUG]: Tab across TabSheets James Low
- RE: [DUG]: Tab across TabSheets Stacey Verner
- RE: [DUG]: Tab across TabSheets Vaughan, Benjamin Carl
