- Регистрация
- 12.10.2013
- Сообщения
- 89
- Благодарностей
- 8
- Баллы
- 8
Код:
int c=project.Tables["Table3"].RowCount;
for(int i=0;i<project.Tables["Table4"].RowCount;i++)
{
project.Tables["Table3"].AddRow(project.Tables["Table4"].GetRow(i));
}
c=project.Tables["Table3"].RowCount;
while(project.Tables["Table3"].RowCount>0)
{
project.Tables["Table3"].DeleteRow(0);
}
Failed to delete a row from the table Table3
how could resolve the problem about deleting a row of the table?