TAdvInputTaskDialogExt - OnDialogButtonClick

Hello,

an error occured in this event ("Ungültige Typumwandlung", means invalid type cast).

Best regards,
Marco.

Hello,

Extention: Version 5.8.3.0 (12/11/2010), also in earlier version.

Best regards
Marco

I could not reproduce any problem with this here. Test in a new app with default TAdvInputTaskDialogEx:


procedure TForm1.AdvInputTaskDialogEx1DialogButtonClick(Sender: TObject;
  ButtonID: Integer);
begin
  ShowMessage('here');
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  AdvInputTaskDialogEx1.Title := 'Title';
  AdvInputTaskDialogEx1.Instruction := 'Instruction';
  AdvInputTaskDialogEx1.CustomButtons.Add('Test');
  AdvInputTaskDialogEx1.Execute;
end;

works fine.

Hello,

if you use AdvInputTaskDialogEx1.CommonButtons := [cbOK,cbCancel] and click one of them, the error occured.

Best regards
Marco.

We could trace & solve this issue now. Next update will address this.