Тема: Курсоры
Показать сообщение отдельно
Старый 09.04.2004, 18:02   #3  
RAks is offline
RAks
Участник
 
11 / 10 (1) +
Регистрация: 10.05.2002
static void cursorTest(Args _args)
{
InventTable it;


int i = 0;
;


select it;

while (it.recId != 0)
{
i++;

print(strFmt("%1", it.RecId));

next it;
}


print(strFmt("Всего- %1", i));
}