TAdvUpDownEdit fires onChange before onCreate!

With the Version 1.1.1.0 of TAdvUpDownEdit the onChangeEvent of TAdvUpDown fires before the onCreate Event!


Only one TAdvDownEdit on the Form and Increment=100 and Text=5 for example. 
This is a little bit ... annoying, When you try to use for example a List that you create in the onFormCreate event. A Assigned (FList) helps... but?

unit Unit2;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs,
  system.Generics.Collections,

  advmultibuttonedit, AdvUpDownEdit;

type
  TForm2 = class(TForm)
    AdvUpDownEdit1: TAdvUpDownEdit;
    procedure AdvUpDownEdit1Change(Sender: TObject);
    procedure FormCreate(Sender: TObject);
  private
    { Private-Deklarationen }
    FList : TList<Integer>;
  public
    { Public-Deklarationen }
  end;

var
  Form2: TForm2;

implementation

{$R *.dfm}

procedure TForm2.AdvUpDownEdit1Change(Sender: TObject);
var i : integer;
begin
 FList.Clear;
 //....do some other things with the List
end;

procedure TForm2.FormCreate(Sender: TObject);
begin
 FList:=TList<Integer>.Create;
end;

end.

Thanks for reporting. We fixed this. The next update will address this.

Thanks!

Sorry for "refreshing" this topic, but the latest version of TAdvUpDownEdit in VCLUIPAck has the same issue! Again!

Any ideas on this?

We had already fixed this and confirmed by email.

We plan to release an update for TMS VCL UI Pack this week containing this fix.

Thank you!