Datagrid Column Width

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I found the following code on microsoft.support.com which is supposed to with of a column
'----------------------------------------------
Dim ts As New DataGridTableStyle(
ts.MappingName = "tbl_Client
DataGrid1.TableStyles.Clear(
DataGrid1.TableStyles.Add(ts
DataGrid1.TableStyles("tbl_Client").GridColumnStyles("First_Name").Width = 17
'--------------------------------------------------------------------------------------
Where tbl_Client is the Table name and First_Name is the column Name
But when I run the code I get the following error

Object reference not set to an instance of an objec

Thanks for your hel
 
Hi Heinz,

I think that there is no First_Name column style.
You should probably add it to ts.
 
Back
Top