zundarz
zundarz

Reputation: 1594

How do I change this object in OracleForms?

Using OracleForms Builder 32bit v 11.2. How do I change the name of the form as highlighted in this picture?OracleForm

Upvotes: 0

Views: 86

Answers (1)

GriffeyDog
GriffeyDog

Reputation: 8376

This is controlled by the "Title" property of the window. You can set it via the Forms Designer property palette, having selected the window in question. Or you can change it programatically using the Forms built-in set_window_property, e.g.:

set_window_property('my_window_name', TITLE, 'New Title');

Upvotes: 5

Related Questions