Table of Content
HAL Forum
procedure RadioButton (
Integer h,Integer v,Integer value,Integer defaultvalue,string name,
string field)
Description:
Adds RadioButton to window
Parameters:
h Horizontal position in window
v Vertical position in window
value Button value
defaultvalue Default value
name RadioButton name
field Field name from record's or block's database definition
  WindowBegin("Specify ButonFrame Example",BFrameRClass,CGRcW,RcType);
  SetWRect(64,80,509,298);
  ButtonFrame(20,6,123,2,"Function");
  RadioButton(20,6,0,0,"Overview",ArtMode);
  RadioButton(20,22,1,0,"Detailed",ArtMode);
  EndWindow;

Related topics:
««