oracle-databaseoracleformsoracle-fusion-middleware

Code for backspace button in calculator oracle forms?


I want to add backspace button in calculator oracle forms developer

What is the code for backspace button. Remove value from display item


Solution

  • You can do something like this on trigger WHEN-BUTTON-PRESSED:

    :yourBlock.field := substr(:yourBlock.field, 0, length(:yourBlock.field) -1);