Adding a rich text box to a datagrid

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

Guest

hello,
I would like to add a rich text box to a datagrid. does anyone know of any code samples, or any other way where I can display a field in a datagrid and allow the user to click on it and enter a large amount of text, without the datagrid showing all the text in the grid.

Thanx in advance

Robert
 
You may be intrested in the (free) ExtendedDataGrid:
http://dotnet.leadit.be/extendeddatagrid

(from the site)
Additionally the ExtendedDataGrid provides a framework to easily add
virtually any UserControl to a DataGrid cell! It comes down to creating a
custom control by inheriting from the ExtendedDataGridControl and
implementing the desired functionality. Then this custom control can be
added to the ExtendedDataGridControlColumn so in each cell your control will
be rendered. All of this can be done by using the default Visual Studio.NET
designers.

--
Greetz

Jan Tielens
________________________________
Read my weblog: http://weblogs.asp.net/jan


Robert Batt said:
hello,
I would like to add a rich text box to a datagrid. does anyone know
of any code samples, or any other way where I can display a field in a
datagrid and allow the user to click on it and enter a large amount of text,
without the datagrid showing all the text in the grid.
 
Back
Top