View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001517 | JEDI VCL | 00 JVCL Components | public | 2004-03-23 04:42 | 2004-03-23 05:36 |
Reporter | michael.habbe | Assigned To | user72 | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | |||||
Target Version | Fixed in Version | ||||
Summary | 0001517: TJvDBCalcEdit - OnExit raises "DataSet not in Edit Mode" | ||||
Description | When you enter TJvDBCalcEdit and exit the component without any changes in data, the exception "Dataset not in Editmode" is raised. Solution: Checking, if it was modified. procedure TJvDBCalcEdit.CMExit(var Msg: TCMExit); begin if Modified then // <<-- new try CheckRange; FDataLink.UpdateRecord; except SelectAll; if CanFocus then SetFocus; raise; end; inherited; end; The procedure is found in JvDBCtrl.pas | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2004-03-23 04:42 | michael.habbe | New Issue | |
2004-03-23 05:36 |
|
Status | new => resolved |
2004-03-23 05:36 |
|
Resolution | open => fixed |
2004-03-23 05:36 |
|
Assigned To | => user72 |
2004-03-23 05:36 |
|
Note Added: 0003445 |