Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion

TaskDialog is broken in 64-bit

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

Sign In or Register to comment.