ArrayArrayArrayArrayArray
Statistics: Posted by creal — 15 Feb 2021, 11:57
CODE:
//////////////////////////// Decode date /////////////////////////// declaration var year,month,day : Tparameter; // decode procedure Init; begin year:=CreateParam('year',ptDataField,pioOutput); year.MinMaxNoLimit(true); month:=CreateParam('month',ptDataField,pioOutput); month.MinMaxNoLimit(true); day:=CreateParam('day',ptDataField,pioOutput); day.MinMaxNoLimit(true); end; //PROCESS PROCEDURE PROCESS();var y,m,d : uInt16;BEGIN DecodeDate(Date,y,m,d); year.asinteger(y); month.asinteger(m); day.asinteger(d); END; Statistics: Posted by senso — 15 Feb 2021, 09:53
Statistics: Posted by creal — 14 Feb 2021, 10:10
Statistics: Posted by creal — 11 Feb 2021, 09:29
Statistics: Posted by creal — 15 Feb 2021, 11:57
CODE:
//////////////////////////// Decode date /////////////////////////// declaration var year,month,day : Tparameter; // decode procedure Init; begin year:=CreateParam('year',ptDataField,pioOutput); year.MinMaxNoLimit(true); month:=CreateParam('month',ptDataField,pioOutput); month.MinMaxNoLimit(true); day:=CreateParam('day',ptDataField,pioOutput); day.MinMaxNoLimit(true); end; //PROCESS PROCEDURE PROCESS();var y,m,d : uInt16;BEGIN DecodeDate(Date,y,m,d); year.asinteger(y); month.asinteger(m); day.asinteger(d); END; Statistics: Posted by senso — 15 Feb 2021, 09:53
Statistics: Posted by creal — 14 Feb 2021, 10:10
Statistics: Posted by creal — 11 Feb 2021, 09:29