Remove a column from a Dataset

  • Thread starter Thread starter Bruce A. Julseth
  • Start date Start date
B

Bruce A. Julseth

I have a dataset that I want to remove the first column. Can I do this
without "Select"ing again? If so, how.

Thanks....
 
Bruce,

A dataset has no columns.

A datatable has that and removing a column from the first of that is
Datatable.datatable(0).columns.remove(0)

I hope this helps?

Cor
 
Cor Ligthert said:
Bruce,

A dataset has no columns.

A datatable has that and removing a column from the first of that is
Datatable.datatable(0).columns.remove(0)

I hope this helps?

Cor

Cor:

Works like a charm.. Thanks......

Bruce
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top