invisible datagridview line
hihi...
i am trying to use datagridview as to tidy up my layout of the data as well as to make my application a more dynamic one. however, is it possible to set the datagrid line to invisible, so that the data is displyed without any alignment.
example,
when using table property in MS words, the data is tabulated nicely in a table form, but when the doc is printed out, the table line is not shown.
??
ocw
Re: invisible datagridview line
Set GridLineStyle property of the DataGrid to None. :)
Re: invisible datagridview line
The DataGridView doesn't have a property that dictates whether the grid lines are visible or not like the DataGrid. It would seem that you need to set the GridColor property to match the colour of the Cells, which will be Window by default.
Re: invisible datagridview line
Seems like this belongs to .NET 2.0. :mad: