See the WrapText property of the grid's Column Object in VB's onlne help.
DataGrid1.Columns(1).WrapText = True
If needed, use the WrapText property in conjunction with the RowHeight
property to produce multi-line displays.
DataGrid1.RowHeight(DataGrid1.Row) = 500
or let users resize row height at runtime.
DataGrid1.AllowRowSizing = True
Glenn
"Richard Shaw" <anonymous RemoveThis @discussions.microsoft.com> wrote in message
news:07a801c39b5d$bdfc2cb0$a001280a@phx.gbl...
Is there a way to have the text in DBGrid records (rows)
allow mutiple lines so that long text will not require
columns to be too wide to show all of the text? The rows
in my Access file can be broadened vertcally so that
multiple lines can be used, but that doesn't translate to
the same situation when I link them to my VB Grid.
I am running Millennium, and Visual Basic 6.0.
>> Stay informed about: Multiple Lines in DBGrid Records