Rajesh123
Rajesh123

Reputation: 107

how to enable and disable the button's one & another in oracle forms 10g

I have create,save,update and delete button's in a form. At first only create button must be enabled and all other buttons disabled, once we create a record, then the save button is enabled. The update and delete button is enabled after we click on save button.

Upvotes: 1

Views: 23025

Answers (1)

pablomatico
pablomatico

Reputation: 2242

You can enable and disable buttons with:

set_item_property('BUTTON_NAME',enabled,property_true);
set_item_property('BUTTON_NAME',enabled,property_false);

Upvotes: 3

Related Questions