This function adds a property of type boolean to a message.
OraForms.bdh
OraFormsAddPropertyBoolean(in nMsg : number, in nPid : number, in bValue : boolean );
Parameter | Description |
---|---|
nMsg | The handle to a message |
nPid | The id of the property to be added. |
bValue | Value of the property. |
transaction TMain var nFlexId : number; gnUmsg : number; subMsg : number; begin OraFormsSetConnectMode(ORA_HTTP_CONNECTION); // Connect - with connection properties OraFormsSetInt("INITIAL_VERSION", 608); OraFormsSetPoint("INITIAL_RESOLUTION", 96, 96); OraFormsSetPoint("INITIAL_DISP_SIZE", 1024, 768); OraFormsSetInt("INITIAL_COLOR_DEPTH", 256); OraFormsSetString("FONT_NAME", "Dialog"); OraFormsSetPoint("INITIAL_SCALE_INFO", 8, 18); OraFormsSetBoolean("WINSYS_REQUIREDVA_LIST", false); OraFormsConnect("server module=Person3.fmx userid= useSDI=yes record=names"); // New windowmactivated: Logon OraFormsSetWindow("Logon"); OraFormsLogon("user", "password", "orcl_server"); OraFormsBeginMessageBlock("Block#2"); gnUmsg := OraFormsCreateMessage(20, 40, ORA_MSG_TYPE_UPDATE); subMsg := OraFormsCreateMessage(30, 40, ORA_MSG_TYPE_UPDATE); OraFormsAddPropertyMessage(gnUmsg, ORA_PID_BP_FOREFILLCOL, subMsg); OraFormsAddPropertyInt(gnUmsg, 2601, 91); OraFormsAddPropertyInt(gnUmsg, 2600, 0); OraFormsAddPropertyBoolean(gnUmsg, 2600, false); OraFormsAddPropertyPoint(gnUmsg, ORA_PID_INITIAL_RESOLUTION, 0, 0); OraFormsAddPropertyString(gnUmsg, 2600, "E"); OraFormsPutMessage(gnUmsg); OraFormsPutTerminalAndWait(); OraFormsFree(gnUmsg); OraFormsEndMessageBlock("Block#2") end TMain;