Table of Content
HAL Forum
VOID SetBlid (
Record BlockName)
Description:
Specifies which settings block is used with the window that is being described. Used only inside CGHbl type of window descriptions.
Parameters:
BlockName Name of the block with Block in the end (if defined so in datadef)
event DefineWindows
begin
  SetLangMode(LangEnglish,"ENG",0);

  WindowBegin("Languages",LangTClass,CGHbl,HBlRecType);
  SetBlid(LangBlock);
  SetWRect(64,80,509,298);
  Sizeable(-1,-1,-1,0);
  MatrixBegin(4,27,-21,-20,LangRowType,99);
  MatCol(1,24,"Code",0,Code,false,0);
  MatCol(1,86,"Name",0,Comment,false,0);
  EndMatrix;
  EndWindow;

  return;
end;


Related topics:
««