handling of performs and indices the new way
This commit is contained in:
@ -1697,12 +1697,25 @@ namespace CobXmlSupport
|
||||
qualifieldhlp tmpQlh = new qualifieldhlp(zRow, lIs.Indexes);
|
||||
qldList.Add(tmpQlh);
|
||||
}
|
||||
IndStatus indSt = new IndStatus();
|
||||
foreach (qualifieldhlp tmpQfh in qldList)
|
||||
{
|
||||
if (tmpQfh.indexStrings != null)
|
||||
{
|
||||
|
||||
//obs under development
|
||||
indSt.handleStatus(tmpQfh.indexStrings);
|
||||
for (int i = 0; i < indSt.Returns; i++)
|
||||
{
|
||||
fromToMoves.CodeShower.Text += "END-PERFORM" + "\r\n";
|
||||
}
|
||||
if (indSt.NewInds != null)
|
||||
{
|
||||
foreach (string indTxt in indSt.NewInds)
|
||||
{
|
||||
fromToMoves.CodeShower.Text += "PERFORM VARYING " + indTxt + " FROM 1 BY 1 UNTIL ??? " + "\r\n";
|
||||
}
|
||||
}
|
||||
//obs under development
|
||||
|
||||
fromToMoves.CodeShower.Text += "MOVE " + tmpQfh.ToString();
|
||||
fromToMoves.CodeShower.Text += "TO " + tmpQfh.ToExpString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user