read/write fields

How do I set fields in the datagris without changing the underlying data set?

1 Reply

HP HP April 23, 2003 06:38 PM UTC

Create DataGridTableStyle and set the columns ReadOnly property to true or false... DataGridColumnStyle my = new DataGridTextBoxColumn(); myCol.MappingName = "db name"; myCol.HeaderText = " Whatever "; myCol.ReadOnly=true; hp > How do I set fields in the datagris without changing the underlying data set?

Loader.
Up arrow icon