Support

Forum Replies Created

Viewing 20 posts - 9,281 through 9,300 (of 9,667 total)
  • Author
    Posts
  • in reply to: Runtime created menus #39595
    Support
    Keymaster

    Hi
    Do you know how to catch a moment when the new Menuitem is created?
    Where may be inserted a handler for this event?

    in reply to: Form Caption #39577
    Support
    Keymaster

    This problem is actual for Aero.
    In other situations caption must be changed without flickering.
    If you really have this flickering in the Aero only, then I try to find a solution soon and problem will be solved automatically.

    in reply to: Disabled Control Color ? #39575
    Support
    Keymaster

    Hello
    Sorry for delay, I'm not always here
    So, disabled edit haven't constant color, because control is alphablended.
    For some skins this color will not be changed and may be calculated, but in many skins this color depended from a color of parent :
    [attachment=3334:disedit.png]
    So, solution depends from a your task.
    Try this code for receiving average color between active edit and main skin color :

    CODE
    uses sGraphUtils, sDefaults;
    Color := MixColors(SkinManager.GetActiveEditColor, SkinManager.GetGlobalColor, DefDisabledBlend);


    Maybe it helps.

    in reply to: SpeedButton and png #39574
    Support
    Keymaster

    Hi

    The glyph property of button is a Bitmap, and you can't just use LoadFromFile.
    Here is a changed code :

    CODE
    uses acPNG;

    {$R *.dfm}

    procedure TForm1.sButton1Click(Sender: TObject);
    var
      Png : TPNGGraphic;
    begin
      Png := TPNGGraphic.Create;
      Png.LoadFromFile(ExtractFilePath(Application.ExeName) + 'TestForm2-48.png');
      sSpeedButton2.Glyph.Assign(Png);
      Png.Free;
    end;

    in reply to: Menu paint on maximize #39573
    Support
    Keymaster

    Thank you for the demo.
    Problem will be solved in the nearest release, I hope.

    in reply to: Access Violation on FormClose #39572
    Support
    Keymaster

    Hello
    Qwark, Could you show me this error by TeamViewer?

    in reply to: Потеря Parent-а в sDBCtrlGrid #39567
    Support
    Keymaster

    А демку реально сделать?

    in reply to: AC 6.35 sAlphaImageList #39564
    Support
    Keymaster

    Действительно проблема серьезная, спасибо за сообщение, пакет обновлен сегодня.

    in reply to: Caption при изменении ExtendedBorders #39563
    Support
    Keymaster

    Высота заголовка задается в скине, там его можно поменять.
    А сделано такое поведение после очень многочисленных просьба, действительно вкусы разные у всех..

    in reply to: TsBitBtn – проблемы c Glygh-ом в AC.6.31 #39562
    Support
    Keymaster

    А если заменить DBCtrlGrid стандартным?
    PS. В следующий раз на оффтопик не буду реагировать, постоянно прошу не оффтопить.

    in reply to: WindowState = wsMaximized #39561
    Support
    Keymaster

    Спасибо, что хоть теперь начали писать об этом..
    Просьба проверить демку с сайта – как она максимизируется.

    in reply to: TPaintbox transparency #39543
    Support
    Keymaster

    Hello
    Try this demo please.
    Example was created for grid but you can copy a code for receiving of the parent background.

    in reply to: TsBitBtn – проблемы c Glygh-ом в AC.6.31 #39542
    Support
    Keymaster

    Спасибо за напоминание, забыл здесь отписаться <img src="style_emoticons//smile.gif” style=”vertical-align:middle” emoid=”:)” border=”0″ alt=”smile.gif” />
    В юните sConst.pas объявлена переменная acOldGlyphsOrder, по умолчанию она False
    PS. Вчера была версия 6.34, сегодня – 6.35 <img src="style_emoticons//smile.gif” style=”vertical-align:middle” emoid=”:)” border=”0″ alt=”smile.gif” />

    in reply to: Problem with sTimePicker #39539
    Support
    Keymaster

    It's a new property )

    in reply to: Problem with sTimePicker #39537
    Support
    Keymaster

    Ok, try set text '00:00:00' and set ShowSeconds property to False..

    in reply to: Problem with sTimePicker #39535
    Support
    Keymaster

    Hello
    Please be sure that you have AlphaControls v6.34 (it's a Beta, not a Stable still)
    Stable version have 6.23 version.

    Support
    Keymaster

    Спасибо за скрин и демку, решение найдется скоро.

    in reply to: AC 6.34 DrawNonClientArea сломалось #39532
    Support
    Keymaster

    Будет починено сегодня.

    Support
    Keymaster

    Будет починено сегодня.

    in reply to: sMessageDlg и OpenDialog #39529
    Support
    Keymaster

    Думаю проблема будет решена сегодня.

Viewing 20 posts - 9,281 through 9,300 (of 9,667 total)