Link to home
Start Free TrialLog in
Avatar of Mad_One
Mad_One

asked on

MS DataGrid Control v6 Vertical Line Removal

Does anyone know how to remove the vertical lines between each record in a DataGrid ???

I can remove the Horizontal lines by using datagrid.RowDividerStyle = dbgNoDividers but I cannot seem to remove the vertical lines..

Please help...
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Why not you use a listview instead of grid?
Avatar of Mad_One
Mad_One

ASKER

Good question....

I was trying to show more than one column at a time i.e. three columns in a table, and then got side tracked into using a datagrid...

I have added them all together now as a view on the SQL server, so that has sorted that little problem.

However I would like to add pictures/icons to the front of each record in the list, simular to NT Security Manager - Any suggestions..
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Mad One:
If you want greater funtionality (such as pictures.. different fonts & backcolors.. grids / nogrids) try using the FlexGrid control instead.. of a Datagrid.. <smile>.

Avatar of Mad_One

ASKER

Thanks for pointing me in the right direction...

I now have a functional project using a listview component.. Icons as well..

Cheers.