Table of Content
HAL Forum
function Boolean ImportIntoText (
Record Letr)
Description:
Import a string into a Register
Parameters:
Letr where you put the String
global updating
procedure In()
begin
  Record LetVc Letr;  
  Boolean testf;
	
  RecordNew(Letr);
  if(ImportIntoText(Letr)) then begin end;
  testf = RecordStore(Letr,false);
  testf = NextImportLine(true);
	
  return;
end;
Related topics:
««