| Anonymous | Login | Signup for a new account | 2010-09-09 13:03 CEST |
| Main | My View | View Issues | Change Log | Roadmap | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||
| 0005201 | [JEDI VCL] 00 JVCL Components | minor | always | 2010-03-16 19:43 | 2010-03-16 21:29 | ||
| Reporter | iwcia | View Status | public | ||||
| Assigned To | AHUser | ||||||
| Priority | normal | Resolution | fixed | ||||
| Status | resolved | Product Version | Daily / SVN | ||||
| Summary | 0005201: With a form on a secondary monitor located on the left of primary monitor JvDBLookupCombo drops down to the wrong monitor | ||||||
| Description |
In issue 0004462 it was partially fixed, but still JvDBLookupCombo drops down to the wrong monitor when secondary monitor is located on the left of the primary monitor. The fix is as following: in /jvcl/trunk/jvcl/run/JvDBLookup.pas: line 2669: SetWindowPos(FDataList.Handle, HWND_TOP, Max(P.X, 0), Y, 0, 0, SWP_NOSIZE or SWP_NOACTIVATE {or SWP_SHOWWINDOW}); should be: SetWindowPos(FDataList.Handle, HWND_TOP, Max(P.X, Rect.Left), Y, 0, 0, SWP_NOSIZE or SWP_NOACTIVATE {or SWP_SHOWWINDOW}); line 2682: SetWindowPos(FDataList.Handle, HWND_TOP, Max(P.X, 0), Y, 0, 0, SWP_NOSIZE or SWP_NOACTIVATE or SWP_SHOWWINDOW); should be: SetWindowPos(FDataList.Handle, HWND_TOP, Max(P.X, Rect.Left), Y, 0, 0, SWP_NOSIZE or SWP_NOACTIVATE or SWP_SHOWWINDOW); |
||||||
| Additional Information | |||||||
| Tags | No tags attached. | ||||||
| Attached Files | |||||||
|
|
|||||||
| Mantis 1.1.6[^] Copyright © 2000 - 2008 Mantis Group |