|
|
#8 |
|
Участник
|
Вроде бы разобрался. Осталась такая проблема.
Записал в классе своём X++: AsciiIO mFile;
LedgerInAccountStatementFromOut_67 recordInAccount;
;
mFile = new AsciiIO("C:\\toAxapta.txt","R");
this.BankRecordReceive(mFile);X++: void BankRecordReceive(AsciiIO recordFile) { LedgerInAccountStatementFromOut_67 ledgerInAcc; container state; str strRec, status,type, comment, strTemp; int cntLine; ; ttsbegin; delete_from ledgerInAcc; ttscommit; recordFile.inFieldDelimiter("~"); cntLine=0; while(cntLine<16) { state = recordFile.read(); info(strfmt("%1",conpeek(state,1))); cntLine = cntLine + 1; } Может быть я что - то делал не так ? Последний раз редактировалось longson; 08.07.2007 в 19:05. |
|
|