Delete Rows of a Dataset

  • Thread starter Thread starter BlackSun
  • Start date Start date
B

BlackSun

Hi,
how can I delete many continuos rows of a dataset in one time?
The statement for 1 line is: Dataset.Rows(12).Delete but if I would
like to delete from line 1 to 562?

Is there any statement or I have to do a cycle For??

Thank you in advance....

Cheers
BlackSun
 
You need a for loop, be aware that as something is in code one statement,
that does not mean it is not a loop behind the scene

Cor
 
Back
Top