This happens both in XE2 and XE3
ex:
var
theDialog: TLMDTaskDialog;
begin
theDialog := TLMDTaskDialog.Create(nil);
try
with theDialog do
begin
MainInstruction := "theMessage";
Title := "theCaption";
MainIcon := tdiInformation;
CommonButtons := [tdcbOk];
Execute;
end;
finally
theDialog.free;
end;
end;
Comments