MessageDlg or FMX.Dialogs.MessageDlg does not work at all

Issue #31 resolved
Zoltan Karpati created an issue

MessageDlg or FMX.Dialogs.MessageDlg does not work at all.

Comments (3)

  1. Md. Shariful Alam Khan

    You have to add FMX.DialogService in uses clause and do as following: TDialogService.MessageDialog('Hello from Delphi to Linux Desktop', TMsgDlgType.mtWarning, [TMsgDlgBtn.mbOK], TMsgDlgBtn.mbOK, 0, procedure(const AResult: TModalResult) begin

    end);
    

    I tested it with 0.905 version and worked perfectly.

  2. Log in to comment