Support

Forum Replies Created

Viewing 20 posts - 141 through 160 (of 9,667 total)
  • Author
    Posts
  • in reply to: ExtraLineData Glyph #70505
    Support
    Keymaster

    But the Image quality gets distorted.
    Try to make new glyph with size of ImageList, which result will be?

    in reply to: ExtraLineData Glyph #70504
    Support
    Keymaster

    But no Glyph is shown in ExtraLineData. Please provide one DEMO.

    Demo of ExtrLine may be found in the ASkindemo.
    Look this procedure there:

    procedure TMainForm.sSkinManager1GetMenuExtraLineData(FirstItem: TMenuItem; var SkinSection, Caption: string; var Glyph: TBitmap; var LineVisible: Boolean);

    The glyph may be invisible if AlphaChannel exists there but empty (glyph is drawn as fully transparent in this case).

    in reply to: Bug Report AlphaControls 16.16 in RAD Studio 10.4 #70503
    Support
    Keymaster

    Interesting. How this icon is loaded there?

    in reply to: ExtraLineData Glyph #70492
    Support
    Keymaster

    This Glyph is nil when event occurs.
    If Glyph must be used then developer should create it here.
    The GetBitMap procedure doesn’t create an image, you can use the sAlphaImageList1.CreateBitmap32 function.

    in reply to: Bug Report AlphaControls 16.16 in RAD Studio 10.4 #70491
    Support
    Keymaster

    What if skins are disabled? Glyph in taskbar button is painted Ok in this case?

    in reply to: Older Versions available (e.g. 11.20)? #70482
    Support
    Keymaster

    Hello! Of course it’s possible, write to the support@alphaskins.com, please.

    in reply to: Bug Report AlphaControls 16.16 in RAD Studio 10.4 #70481
    Support
    Keymaster

    Could you show a screenshot of the TaskBar button? A Glyph just not visible there?

    The form will always react to clicking on Maximize button, but you can try to plat with the Form.Constraints property (limit max size).

    in reply to: Set sPageControl AnimatEvents at Form Creation #70480
    Support
    Keymaster

    You should add sConst to the uses clause.
    aeMouseEnter, aeMouseLeave, aeMouseDown and aeLighting are declared in this unit.

    in reply to: ExtraLineData Glyph #70479
    Support
    Keymaster

    Hello!
    Glyph should not be Nil and PixelFormat should be pf32bit, please check it.

    in reply to: Version 16.18 does not compile in Delphi 10.4.1 #70470
    Support
    Keymaster

    Hi! I’m glad that issue is resolved, thank you for the info.

    in reply to: Skinning problem when using TGridPanel #70464
    Support
    Keymaster

    Hi! Thank you for the demo.
    Reason of the issue – your gridpanel is not skinned.
    Try to add “TGridPanel” as “Panel” in the sSkinManager1.ThirdPartyList. Look the screenshot.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Get colors of skinned menu #70458
    Support
    Keymaster

    Hi
    Menu may have gradient or filled by texture, which color should be returned for background?
    You can try to use this code:
    uses sVCLUtils;

    Color := acColorToRGB(clMenu);
    Color := acColorToRGB(clMenuText);
    
    // Active item color
    Color := sSkinManager1.CommonSkinData.gd[sSkinManager1.SkinCommonInfo.Sections[ssMenuItem].Props[1].Color;
    
    // Active item text color
    Color := sSkinManager1.CommonSkinData.gd[sSkinManager1.SkinCommonInfo.Sections[ssMenuItem].Props[1].FontColor.Color;
    

    Color of disabled item is calculated (it’s semitransparent)

    • This reply was modified 3 years ago by Support.
    in reply to: Scrolling in a TsCombobox #70457
    Support
    Keymaster

    Thank you, I see it now and I hope to fix it in the nearest release.

    in reply to: TsHTMLLabel and bold font used with Open Sans #70456
    Support
    Keymaster

    Hi! It’s interesting, thank you for information.

    in reply to: aphacontrols 16.16 & TNTcontrols #70455
    Support
    Keymaster

    Hello!
    I will check the package under Delphi 7 with TNT before nearest release.

    Support
    Keymaster

    но нигде не вижу документацию, что именно делают LoadFromURL / LoadFromURLThread

    Функции совсем недавно появились, еще не задокументированы. Они используют библиотеку wininet. Для большинства разработчиков эта функциональность оказалось ненужна и из-за подтягивания целой лишней библиотеки попросили добавить условную компиляцию, чтобы по-умолчанию все было как раньше.
    Теперь, чтобы функции работали и чтобы подключить библиотеку wininet нужно раскомментировать ключ USE_INET в файле sDefs.inc
    Этот подход работает на данный момент только при наличии исходников. Возможно найду способ для работы этого ключа и в скомпилированном пакете.

    1. локальные файлы с диска этими функциями можно загружать?

    Локальные файлы можно загрузить в Stream, а потом есть TsImage.LoadFromStream

    3. как сбросить или проверить кэш? где он, как управлять?

    sImage1.SkinData.BGChanged := True;
    Этот флаг означает, что нужна полная перерисовка.

    4. можно ли управлять ресайзом (плохое качество)
    5. как сделать масштабирование aspect fill (он же cover, он же полная пропорциональная заливка без рамок)

    Не совсем понятно о чем речь, демка желательна.

    Support
    Keymaster

    Sorry, I’ll check it, thank you for the demo.

    in reply to: sDBDateEdit #70442
    Support
    Keymaster

    Hello! I will check it.

    in reply to: v16.18 Stable + Delphi 11 install = crash #70441
    Support
    Keymaster

    Hello, Jarrod!
    The issue is solved after a talking via the Skype?

    in reply to: TsComboBox dropdown list refresh #70440
    Support
    Keymaster

    Hello!
    You tried such code there?

      sComboBox1.Items.BeginUpdate;
    ... Updating items ...
      sComboBox1.Items.EndUpdate;
Viewing 20 posts - 141 through 160 (of 9,667 total)