I'm trying to remove the row lines borders on the DBGrid. There is no property to change the DBGrid color directly, or to remove them. I tried, on the CustomDrawEvent, setting the canvas pen to psClear, but it did not work. I changed some properties in my DBGrid to make it look as the image below, like so:
Ctl3D: false
BorderStyle: bsSingle
DrawingStyle: gdsGradient
I also tried this to remove the lines by using the sabe color as the background, but the result was not what I wanted and ended up like this (I used red to represent the wrong result):
I am trying to achieve something like this (Notice how there is no line between the rows):
Is there a way so I can remove these lines between the rows?
Edit: You can remove the columns and rows lines completely using
DBGrid.Options.dbColLines = false
DBGrid.Options.dbRowLines = false