Call the Clear method of the DataGridView's Rows Property, which represents
its Collection of DataGridRows.
-Peter

Signature
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com
> Hi,
>
[quoted text clipped - 53 lines]
>
> }
RSH - 29 Dec 2005 22:04 GMT
That clears only the data...so when I try to use the dataGridView again it
has all the columns from the initial bind. It keeps adding the columns.
> Call the Clear method of the DataGridView's Rows Property, which
> represents
[quoted text clipped - 60 lines]
>>
>> }
mablejune@otismukinfus.com - 31 Dec 2005 00:08 GMT
>That clears only the data...so when I try to use the dataGridView again it
>has all the columns from the initial bind. It keeps adding the columns.
yourDataGridView.DataSource = null;
{snip}