Hi,
At design time I can set the column width. But this is set for all columns.
I want some columns smaller than others. Does anyone know how I can do this?
Thanks, kleedje
Printable View
Hi,
At design time I can set the column width. But this is set for all columns.
I want some columns smaller than others. Does anyone know how I can do this?
Thanks, kleedje
this one?
VB Code:
Dim t As New DataGridTableStyle() t.MappingName = "mzim Table" Dim name As New DataGridTextBoxColumn() name.Width = 100 name.MappingName = "ID" name.HeaderText = "ID no." name.NullText = "" t.GridColumnStyles.Add(name)