Hi

I'm having a problems with a DataGrid where one of columns is a multi-line textbox field
The problem is that it won't recognise a carriage return (i.e. new Line)
The '.AcceptReturn' is set to true, even the 'keypress' event doesn't recognise that the 'Return' key has been pressed

Here's the pseudo code for the datagrid style

Dim Style As DataGridTableStyle = New DataGridTableStyl
With Styl
.MappingName = "NOTES
.AlternatingBackColor = Color.WhiteSmok
.PreferredRowHeight = 5
With .GridColumnStyle
.Add(New DataGridTextBoxColumn
With CType(.Item(0), DataGridTextBoxColumn
.MappingName = "NOTES_TXT
.HeaderText = "Notes
.Width = 10
.ReadOnly = Fals
.TextBox.Multiline = Tru
.TextBox.AcceptsTab = True ' <-- This work
.TextBox.AcceptsReturn = True ' <-- This Doesn't
End Wit
End Wit
End Wit

Is there a know problem with the '.AcceptsReturn' property for a DataGridTextBoxColumn

VB.NET - Development Env 2003 (Version 7.1.3088
Net Framework 1.1 (Version 1.1.4322
Microsoft SQL Server 8.00.19

Many Thanks
Andy