Reputation: 387
I want to display image automatically when form open not when button press or any other event
How to achieve this target in oracle forms 11g?
Upvotes: 1
Views: 1196
Reputation: 142720
You didn't say what image it is, so I'll presume that there's a data block which fetches images from the database.
In order not to do anything, but make that image appear, create a WHEN-NEW-FORM-INSTANCE
trigger which looks like this:
go_block('block_that_contains_the_image');
execute_query;
Upvotes: 2