Saturday, May 16, 2020
Make The Enter Key Work Like Tab in Delphi Applications
We know that, generally, pressing the Tab key moves the input focus to next control and Shift-Tab to previous in the tab order of the form. When working with Windows applications, some users intuitively expect the Enter key to behave like a Tab key. There is a lot of third-party code for implementing better data entry processing in Delphi. Here are a few of the best methods out there (with some modifications). Examples below are written with the assumption that there is no default button on the form. When your form contains a button whose Default property is set to True, pressing Enter at runtime executes any code contained in the buttons OnClick event handler. Enter as Tab The next code causes Enter to behave like Tab, and ShiftEnter like ShiftTab: ~~~~~~~~~~~~~~~~~~~~~~~~~procedure TForm1.Edit1KeyPress (Sender: TObject; var Key: Char) ;beginà à If Key #13 Then Beginà à à If HiWord(GetKeyState(VK_SHIFT)) 0 thenà à à à SelectNext(Sender as TWinControl,False,True)à à à elseà à à à SelectNext(Sender as TWinControl,True,True) ;à à à à Key : #0à à end;end;~~~~~~~~~~~~~~~~~~~~~~~~~ in DBGrid If you want to have similar Enter (ShiftEnter) processing in DBGrid: ~~~~~~~~~~~~~~~~~~~~~~~~~procedure TForm1.DBGrid1KeyPress (Sender: TObject; var Key: Char) ;beginà à If Key #13 Then Beginà à à If HiWord(GetKeyState(VK_SHIFT)) 0 then beginà à à à with (Sender as TDBGrid) doà à à à if selectedindex 0 thenà à à à à selectedindex : selectedindex - 1à à à à else beginà à à à à DataSource.DataSet.Prior;à à à à à selectedindex : fieldcount - 1;à à à à end;à à à end else beginà à à à with (Sender as TDBGrid) doà à à à if selectedindex (fieldcount - 1) thenà à à à à selectedindex : selectedindex 1à à à à else beginà à à à à DataSource.DataSet.Next;à à à à à selectedindex : 0;à à à à end;à à end;à à Key : #0à à end;end;~~~~~~~~~~~~~~~~~~~~~~~~~ More Info on Delphi Applications Keyboard Symphonyà Get familiar with the OnKeyDown, OnKeyUp, and onKeyPress event procedures to respond to various key actions or handle and process ASCII characters along with other special purpose keys. What Does #13#10 Stand for, in Delphi Code?à If you are wondering what those characters stand for, heres the answer.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.