Hi:
I am a newbie to VB.Net, and for work I need to use it to develop new UI.
And the problem comes from how to set cell color and modify its text via datgarid,
I use the following code:
Me.DataGrid1 = New System.Windows.Forms.DataGrid()
Me.SqlDataAdapter1 = New System.Data.SqlClient.SqlDataAdapter()
Me.SqlDataAdapter1.Fill(Me.DataSet1, "TEST")
Dim myGridTableStyle As DataGridTableStyle = New DataGridTableStyle()
Me.DataGrid1.TableStyles.Add(myGridTableStyle)
myGridTableStyle.GridColumnStyles(1).Width = 120
Is there any way to change the font color of column 2 and modify its cell text,
Any instructions is highly appreciated, thanks a lot.