View Issue Details

IDProjectCategoryView StatusLast Update
0005424JEDI VCL00 JVCL Componentspublic2010-11-27 11:27
ReporterralfiiiAssigned Tojfudickar 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product VersionDaily / GIT 
Target VersionFixed in Version 
Summary0005424: Function CrtResString in JvJVCLUtils fails on multi-monitor systems
DescriptionMay affect the FormStorage-components.

On a multi-monitor system the forms may be mis-placed as the app doesn't recognize when the secondary monitor is removed.
Additional InformationFix:

The current code
  Result := Format('(%dx%d)', [GetSystemMetrics(SM_CXSCREEN),
    GetSystemMetrics(SM_CYSCREEN)]);
should be replaced with
  Result := Format( '(%dx%d)',
    [Screen.DesktopWidth, Screen.DesktopHeight]);
TagsNo tags attached.

Activities

jfudickar

2010-11-27 11:27

developer   ~0018166

This is fixed in the SVN since revision 12842 (6. September :-)

Kind regards
Jens

Issue History

Date Modified Username Field Change
2010-11-24 19:04 ralfiii New Issue
2010-11-27 11:27 jfudickar Note Added: 0018166
2010-11-27 11:27 jfudickar Status new => resolved
2010-11-27 11:27 jfudickar Resolution open => fixed
2010-11-27 11:27 jfudickar Assigned To => jfudickar