Jump to content

Recommended Posts

Posted
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;

 

Posted

 

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;

 

Posted

Hello, 

Could you please clarify what exactly didn’t work? What behavior were you expecting, and what happened instead?

Posted

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.

×
×
  • Create New...