1

(3 replies, posted in SQL queries)

procedure frmPaymentWindow_pwEdSweep_OnChange (Sender : String);
begin
    frmPaymentWindow.pwEdBrokerFee.value := frmPaymentWindow.pwEdPaid.value - frmPaymentWindow.pwEdSweep.value;
end;
procedure frmPaymentWindow_pwEdPaid_OnChange (Sender : String);
begin
    frmPaymentWindow.pwEdBrokerFee.value := frmPaymentWindow.pwEdPaid.value - frmPaymentWindow.pwEdSweep.value;
end;
begin
end.

Hi Tried the same logic provided however cant seem to make it work in my end.. I am not sure what I am doing wrong. hope someone could help me with the correct code.

Update: nvm got it figured out :-)