Hello,
I found this code which adds an image as a column header background image. Is there a way to show the header text also?
Thanks!
I found this code which adds an image as a column header background image. Is there a way to show the header text also?
Thanks!
Code:
myImage = New Bitmap("c:\grd_head.png")
If True Then
If e.RowIndex < 0 AndAlso e.ColumnIndex = 0 Then
e.Graphics.DrawImage(myImage, e.CellBounds)
e.Handled = True
End If
End If
End Sub