View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0004194 | JEDI VCL | 00 JVCL Components | public | 2007-08-06 11:29 | 2007-08-18 06:58 |
| Reporter | braune | Assigned To | AHUser | ||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | resolved | Resolution | fixed | ||
| Product Version | Daily / GIT | ||||
| Target Version | Fixed in Version | 3.34 | |||
| Summary | 0004194: JvDBDateTimePicker Escape do Beep | ||||
| Description | Hi, Press Esc key make beep, have changed procedure to following code: procedure TJvDBDateTimePicker.KeyPress(var Key: Char); begin if FIsReadOnly and not FDataLink.CanModify then begin if BeepOnError then Beep; Key := #0; Exit; end; inherited KeyPress(Key); if (Key in [0000032..0000255]) and ((FDataLink.Field <> nil) and not (FDataLink.Field.IsValidChar(Key))) then begin if BeepOnError then Beep; Key := #0; end; case Key of 0000032..0000255: FDataLink.Edit; Esc: begin FDataLink.Reset; SetFocus; Key := #0; // Braune changed - 06.08.2007 end; end; end; Regards Uwe | ||||
| Tags | No tags attached. | ||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2007-08-06 11:29 | braune | New Issue | |
| 2007-08-18 06:57 | AHUser | Status | new => resolved |
| 2007-08-18 06:57 | AHUser | Fixed in Version | => Daily / SVN |
| 2007-08-18 06:57 | AHUser | Resolution | open => fixed |
| 2007-08-18 06:57 | AHUser | Assigned To | => AHUser |
| 2007-08-18 06:57 | AHUser | Note Added: 0013640 |