View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002754 | JEDI VCL | 00 JVCL Components | public | 2005-03-14 08:42 | 2005-05-26 05:35 |
Reporter | marcgeldon | Assigned To | obones | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 3.00 BETA 2 | ||||
Target Version | Fixed in Version | 3.10 | |||
Summary | 0002754: TJvDBLookupTreeViewCombo - Problem in procedure DoKillFocus | ||||
Description | Hello! Someone forgot to include a inherited call in the actual DoKillFocus procedure on the TJvDBLookupTreeViewCombo component. If this inherited call is not made, we got some problems during the repaint. Because the FFocused variable is not changed, the control is paint highlighted (also if it is not focused). Hope to hear from you soon. Best wishes, Marc Geldon (PRO IT SYSTEMS -> www.proitsystems.de) | ||||
Additional Information | +++ ORIGINAL SOURCE +++ procedure TJvDBLookupTreeViewCombo.DoKillFocus(FocusedWnd: HWND); begin if (Handle <> FocusedWnd) and (FDataList.Handle <> FocusedWnd) and (FDataList.FTree.Handle <> FocusedWnd) then CloseUp(False); end; +++ CORRECT +++ procedure TJvDBLookupTreeViewCombo.DoKillFocus(FocusedWnd: HWND); begin if (Handle <> FocusedWnd) and (FDataList.Handle <> FocusedWnd) and (FDataList.FTree.Handle <> FocusedWnd) then CloseUp(False); inherited DoKillFocus(FocusedWnd); end; | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2005-03-14 08:42 | marcgeldon | New Issue | |
2005-05-18 09:36 | obones | Note Added: 0007221 | |
2005-05-18 09:36 | obones | Status | new => feedback |
2005-05-26 05:35 | obones | Status | feedback => resolved |
2005-05-26 05:35 | obones | Resolution | open => fixed |
2005-05-26 05:35 | obones | Assigned To | => obones |
2005-05-26 05:35 | obones | Note Added: 0007354 |