OraFormsBeginMessageBlock and OraFormsEndMessageBlock bundle a set of requests that must be sent within a single round trip. The Silk Performer Recorder automatically detects which requests must be bundled as a message block.
OraForms.bdh
OraFormsBeginMessageBlock( in sTimer : string ) : boolean;
true
if successfulfalse
otherwise| Parameter | Description |
|---|---|
| sTimer | The name of the message block. This is the same name as used for the corresponding OraFormsBeginMessageBlock function. |
dcltrans
transaction TMain
begin
ThinkTime(12.8);
OraFormsBeginMessageBlock("Create Appointment#1");
OraFormsWindowMove("Create Appointment", 200, 0);
OraFormsSetFocus("CONTROL_PB_HOME_0"); //Home
OraFormsEndMessageBlock("Create Appointment#1");
end TMain;