Table of Content
HAL Forum
function LongInt LineTextCnt (
Record Noter)
Description:
Counts how many lines of text you have
Parameters:
Noter Record name
global
procedure PrintNote(record NotepadVc Noter)
BEGIN
  Integer i,rwcnt;
  string 255 tstr;
  
  rwcnt = LineTextCnt(Noter);
  for (i=0;i<rwcnt;i=i+1) begin
    tstr = LineTextGet(Noter,i);
    OUTFORMFIELD("F_NOTE",tstr);    
  end;  
  RETURN;
END;
Related topics:
««