I have a standard Windows Forms DataGrid and wish to display a 300 characters
of text in a DataGridTextBox. I have made the data grid table style rows deep
enough so that all the text can display. I have added the following code to
the constructor for the form which contains the data grid:-
((DataGridTextBox)dgActPurpose.TextBox).WordWrap = true;
((DataGridTextBox)dgActPurpose.TextBox).Multiline = true;
((DataGridTextBox)dgActPurpose.TextBox).ScrollBars = ScrollBars.Vertical;
but this only has an effect when the cell has focus.
I need all the text to be visible at all times when the data grid is
displayed, not just when the cell has focus.
Does anyone have a solution to this please?
--
John Carrick Smith
============