sSkinManager prevents applications from running under Wine/Linux/OSX

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #36778
    cypheros
    Participant

    Hi, I offer my software for Windows and for Linux and OSX, too. After update to AC 10.21, my application no longer starts.

    One new line makes trouble in the new version:

    Code:
    i := ReadRegInt(HKEY_CURRENT_USER, 'Control PanelDesktopWindowMetrics', 'AppliedDPI');

    An exception will be raised during the loading of the main form because Wine doesn't have this setting.

    This simple change fixed the problem:

    Code:
    try
    i := ReadRegInt(HKEY_CURRENT_USER, 'Control PanelDesktopWindowMetrics', 'AppliedDPI');
    except
    i := 0;
    end;

    Would be nice if you could include this into the next release or a more elegant way to prevent an exception in case of a missing registry entry.

    #54455
    Support
    Keymaster

    Hello! Thank you for the message.

    Next version has been uploaded today already. Your solution will be implemented in the v10.23

    #54458
    cypheros
    Participant
    'Support' wrote:

    Hello! Thank you for the message.

    Next version has been uploaded today already. Your solution will be implemented in the v10.23

    Thanks for your great support. Many problems have beeen fixed with new version 10.22 and it's not a big deal to wait some more days for the 10.23 .

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.