OraFormsSetWindow Function

Action

Marks the specified window as the current activate window. This function doesn't send any requests to the server. It is recorded to make the BDL script more readable.

Include file

OraForms.bdh

Syntax

OraFormsSetWindow( in sName : string ) : boolean;

Return value

  • true if successful
  • false otherwise
Parameter Description
sName The window's unique name.

Example

dcltrans 
  transaction TMain 
  begin 
    OraFormsSetString( "DEFAULT_LOCAL_TZ", "Europe/Berlin"); 
    OraFormsConnect( "server module=javamail90.fmx usesdi=yes"); 
    OraFormsSetWindow( "BASE_DEMO_WINDOW"); 
    OraFormsWindowMove( "BASE_DEMO_WINDOW", 0,  -24); 
  end TMain;