Table of Content
HAL Forum
procedure KeySegment (
String Comment)
Description:
Add a field to an existing index key
Parameters:
Comment Field name
RecordBegin(OTVc,-,"ot");
  RecordField(Code,M4Code,5,OTVc);
  RecordField(Comment,M4Str,60,0);
  RecordField(TerminateFlag,M4Int,0,0);
  RecordField(Sign,M4Code,10,UserVc);
  RecordField(Start,M4Code,20,0);
  RecordField(Length,M4Long,0,0);
  RecordField(Type,M4Int,0,0);
  MainKeyBegin(Code,0);
  KeySegment(Code);
  SynchronizationIndex;
  KeyBegin(Comment);
  KeySegment(Comment);
  KeySegment(Code);
  EndRecord;
Related topics:
««