Table of Content
HAL Forum
procedure OpenFile (
string filename)
Description:
Opens file for reading
Parameters:
filename Name of file for reading
external updating procedure INDanIn();

global updating procedure AutoINDanIn()
begin
  OpenFile("data.txt");
  INDanIn();
  CloseFile;
  return;
end;
Related topics:
««