Hi,
Add a tablestyle to your datagrid.
http://msdn.microsoft.com/library/de...asicprimer.asp
Ken
-------------------
<(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi,
>
> In the VB.NET code behind ASP.NET, the programmer is able to directly
> access the columns and rows associated with the datagrid. Why are
> datagrids in VB.NET window forms so different? The only way I have
> figured out how to manipulate the columns and rows in a datagrid is to
> use data tables. So if I want to change any values contained in the
> datagrid table or to hide or show different columns depending on
> different criteria, I must first copy datagrid.datasource over to a
> data table and then make the necessary changes to the data table. Is
> this the only way to work with datagrids in VB.NET forms??
>
> Joy