Table of Content
HAL Forum
procedure CheckBox (
Integer h,Integer v,Integer defaultvalue,string name,string field)
Description:
Adds checkbox to window
Parameters:
h Horizontal position in window
v Vertical position in window
defaultvalue Default value
name Checkbox name
field Field name from record's or block's database definition
  WindowBegin("Specify Checkbox Example",ChBoxRClass,CGRcW,RcType);
  SetWRect(64,80,509,298);
  CheckBox(20,100,0,"Checkbox name",flags[1]);
  EndWindow;

Related topics:
««