Jump to content

baquelo

Members
  • Content Count

    3
  • Joined

  • Last visited

Community Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. baquelo

    MessageDialog in Delphi 10.3

    I'm a beginner in Delphi and I picked up a project in the company where the programmer used the code that way. I was just migrating the Delphi 10.1 project to Delphi 10.3. I did not really think about using the anonymous procedure. Soon I will reinstall Delphi 10.3 and I will proceed to use the anonymous procedure. Many thanks for the reply.
  2. baquelo

    MessageDialog in Delphi 10.3

    Thanks for reply! I reinstall Delphi 10.1.
  3. baquelo

    MessageDialog in Delphi 10.3

    Hi!!I need a confirmation box (Yes and No options) in Android, but in Delphi 10.3 dont work, the app crash... In the Delphi 10.1 work fine... Function TForm1.mensagemConfirmacao(pMensagem: String): TModalResult; Var MR: TModalResult; Begin MR := mrNone; TDialogService.MessageDialog(pMensagem, TMsgDlgType.mtConfirmation, [TMsgDlgBtn.mbYes, TMsgDlgBtn.mbNo], TMsgDlgBtn.mbYes, 0, Procedure(Const AResult: TModalResult) Begin MR := AResult; End); While MR = mrNone Do begin Application.ProcessMessages; end; result := MR; End; Help me please!!
×