Table of Content
HAL Forum
procedure ExportVal (
Val exportvalue,Integer valuetype)
Description:
Exports values to output file, adds TAB as separator
Parameters:
exportvalue value for export
valuetype subtype for Value Type
global
procedure TestExportEn(record RcVc RepSpec)
begin

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

  return;
end;
Related topics:
««