Показать сообщение отдельно
Старый 10.04.2009, 09:51   #4  
Фаткуллов Ренат is offline
Фаткуллов Ренат
Участник
 
38 / 10 (1) +
Регистрация: 04.03.2008
Поставил точку останова на выполнение. выкидывает на PrologSection в Classes\InventJournalReport_Loss_RU вот сдесь.:
X++:
public void executeSection()
{
    XMLNodeListIterator it = new XMLNodeListIterator(xmlNodeListProlog);
    XMLNamedNodeMap     nodeMap;
    XMLElement          elt;
    XMLAttribute        attr;
    ReportTextControl   ctrl;
    Int                 idx;
    ;

    elt = it.value();
    nodeMap = elt.attributes();
    for (idx = 0; idx < nodeMap.length(); idx++)
    {
        attr = nodeMap.item(idx);
        ctrl = this.controlName(attr.name());
       [B][COLOR="Red"] ctrl.text(attr.value());[/COLOR][/B]

    }

    super();
}