OraFormsSetCancelQueryWindow Function

Action

Marks the specified Cancel Query dialog as the current active 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

OraFormsSetCancelQueryWindow( in sName : string );
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");
    OraFormsSetCancelQueryWindow("Cancel Query");
    OraFormsCloseCancelQueryDialog("Cancel Query");
  end TMain;