Table of Content
HAL Forum
procedure ExportLongInt (
LongInt longvalue)
Description:
Exports Integer or Long Integer to output file, adds TAB as separator
Parameters:
longvalue Long Integer or Integer value for export
global
procedure TestExportEn(record RcVc RepSpec)
begin

  ExportString("String");
  ExportDate(CurrentDate);
  ExportLongInt(10);
  ExportVal(4.35,M4Val);
  NewLine;

  return;
end;
Related topics:
««