RECORD (SD.RecordDef) _struct
RECORD (SD.RecordDef) _rowsToInsert
INT _beforeIdx
REDIM _struct[10]
REDIM _rowsToInsert[2]
; vlozenie 1. riadku na zaciatok
INSERT _struct, 1, _rowsToInsert[1]
; vlozenie 2. riadku na koniec
_beforeIdx := _struct\DIM+1
INSERT _struct, _beforeIdx, _rowsToInsert[2]
; vlozenie celej struktury _rowsToInsert na zaciatok
INSERT _struct, 1 , _rowsToInsert
Pridať komentár