Even better....

  • Thread starter Thread starter NewGuy
  • Start date Start date
N

NewGuy

If someone can recommend a free readonly replacement for MS's internal
datagrid I would be really happy
 
NewGuy said:
If someone can recommend a free readonly replacement for MS's internal
datagrid I would be really happy

You can't just set the dataGrid1.ReadOnly property to true?

- carl
 
I can, but really I don't want to use the internal grid control. It's too
hard to work with for something so simple.


NewGuy said:
If someone can recommend a free readonly replacement for MS's internal
datagrid I would be really happy

You can't just set the dataGrid1.ReadOnly property to true?

- carl
 
NewGuy said:
I can, but really I don't want to use the internal grid control. It's too
hard to work with for something so simple.

Well, you could create a Windows Control Library derived from DataGrid and initialize the component with this.ReadOnly = true. You could even hide the ReadOnly property from Intellisense.

- carl
 
Back
Top