Table of Content
HAL Forum
procedure RlColKeyTL (
real x,real y,string title,void FieldType,void FieldName,
boolean align,string KeyName)
Description:
Used in a browse or paste special window to display field column in a defined format with a sorting and search key.
Parameters:
x Column position
y Header position
title Column title
FieldType Field Type
FieldName Field Name
align Alignment: false - left, true - right
KeyName Name of the index or the sort key
  WindowBegin("Expenses",ExpLClass,CGmlist,-);
  SetWRect(20,80,600,298);
  Sizeable(-1,-1,0,0);
  SpawnClass(ExpDClass);
  UseView(ExpVc);
  FormName(PrintExpL);
  RecordList(4,17,-21,-39);
  RlColKey(4,1,    "No.",SerNr,false,SerNr);
  RlColKeyTL(71,57,"OK",M4Mark,OKFlag,false,OKFlag);
  RlColKey(96,96,"Trans. Date",TransDate,false,TransDate);
  RlColKey(221,221,"Person",Person,false,Person);
  RlColKey(305,305,"Name",Name,false,Name);
  RlCol(-1,-1,"",Invalid,true);
  SearchField("Search");
  BrowseSubsetButton(-40,-15);
  SpecialMenu("OK",'G',0,"OKExpLsm");
  EndWindow;
Related topics:
««