Table of Content
HAL Forum
procedure NewLine (
)
Description:
Adds new line combination to export file. Platform-dependent.
global
procedure TestExportEn(record RcVc RepSpec)
begin

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

  ExportString("String2");
  ExportDate(CurrentDate);
  ExportLongInt(17233);
  ExportVal(432.35,M4Val);
  NewLine;

  return;
end;
Related topics:
««