Table of Content
HAL Forum
procedure EndFormRow (
)
Description:
Will end a row inside a form
procedure PrintActRows(record RcVc RepSpec,record ActVc Actr)
BEGIN
  row ActVc Actrw;
  Integer i,rwcnt;

  rwcnt = MatRowCnt(Actr);
  for (i=0;i<rwcnt;i=i+1) begin
    MatRowGet(Actr,i,Actrw);
    OUTFORMFIELD("F_TEXTTYPE",Actrw.TextCode);
    OUTFORMFIELD("F_TEXT",Actrw.Text);
    EndFormRow;        
  end;  
  RETURN;
END;
Related topics:
««