I want to add backspace button in calculator oracle forms developer
What is the code for backspace button. Remove value from display item
You can do something like this on trigger WHEN-BUTTON-PRESSED
:
:yourBlock.field := substr(:yourBlock.field, 0, length(:yourBlock.field) -1);