Ramiz Tariq
Ramiz Tariq

Reputation: 387

how to display image automatically in oracle forms?

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

Answers (1)

Littlefoot
Littlefoot

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

Related Questions