1

(1 replies, posted in Script)

I have this sum i need to be able to do in script, is this possible?


procedure computeTotal (Sender: string);
begin
      Inventory.Edit10.Value := (Inventory.Edit4.Value/Inventory.Edit5.Value);
end;



An error then Populate "//I need to divide the two values (invalid Floating Point Operation) error"

it seems to work fine with + - * but not the Divide / symbol

Any Thoughts?