FATAL: Skinned VCL-combobox completely disfunctional!

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #35894
    ralfiii
    Participant

    Skinning of standard VCL-controls is not working properly anymore since Version 8.48.

    Just place a TCombobox and a TsCombobox with a couple of entries on a (skinned) Form and a button with the code

    Code:
    procedure TForm1.Button1Click(Sender: TObject);
    begin
    ComboBox1.ItemIndex:=(ComboBox1.ItemIndex + 1) mod ComboBox1.Items.Count;
    sComboBox1.ItemIndex:=(sComboBox1.ItemIndex + 1) mod ComboBox1.Items.Count;
    end;

    When you click the button the TsCombobox changes but the VCL-Combobox doesn't show any change.

    When you hover the mouse over the control it repaints and shows the new values.

    The same code works perfectly with V8.46

    Demo-App (compiled with 8.49 with D2010 Prof) attached

    HELP!!!!

    Btw: Exchanging all VCL-controls is NOT an option!

    #51023
    Support
    Keymaster

    Hello!

    I have sent a patched file to your mail-box, check it, please.

    #51024
    ralfiii
    Participant

    It works super, thanks!

    Fastest support ever! 🙂

    'Support' wrote:

    Hello!

    I have sent a patched file to your mail-box, check it, please.

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