Hi,
I am trying to make the text in a DataGridView smooth.
I tried the following but it did not work:
CODE
Protected Overrides Sub OnCellPainting(ByVal e As System.Windows.Forms.DataGridViewCellPaintingEventArgs)
e.Graphics.TextRenderingHint = Drawing.Text.TextRenderingHint.AntiAliasGridFit
MyBase.OnCellPainting(e)
End Sub
Any ideas?
Many thanks!