Ario.Paxaz Posted June 3, 2025 Posted June 3, 2025 Hello Can an event be defined for the UnimEdit trigger? Regards.
Sherzod Posted June 3, 2025 Posted June 3, 2025 3 hours ago, Ario.Paxaz said: Can an event be defined for the UnimEdit trigger? Hello, UnimEdit1 -> OnTriggerEvent ? procedure TMainmForm.UnimEdit1TriggerEvent(Sender: TUniFormControl; AButtonId: Integer); begin end;
Ario.Paxaz Posted June 4, 2025 Author Posted June 4, 2025 22 hours ago, Sherzod said: UnimEdit1 -> OnTriggerEvent ? Thanks. How do I display a mask for a trigger?
Ario.Paxaz Posted June 4, 2025 Author Posted June 4, 2025 I wrote the following commands before calling the form in the trigger event, but it didn't work. procedure TfrmPreEnter.edtQtyTriggerEvent(Sender: TUniFormControl; AButtonId: Integer); begin if AButtonId = 0 then Begin ShowMask('در حال بارگذاری...'); frmCalc.ShowModal; HideMask; End; end;
Sherzod Posted June 4, 2025 Posted June 4, 2025 Hello, Could you please clarify what exactly didn’t work? What behavior were you expecting, and what happened instead?
Ario.Paxaz Posted June 4, 2025 Author Posted June 4, 2025 Screenrecorder-2025-06-04-21-56-16-328.mp4 I want to call the calculator form after touching the trigger. But as you can see in the video, the form opens with a delay and the user may make a mistake.
Ario.Paxaz Posted June 4, 2025 Author Posted June 4, 2025 To be clear, I expect that if the calculator form opens with a delay, the user will see that the form is opening. Several times the calculator form opens with a delay, but the mask is not displayed. Regards.
Recommended Posts