Dennis Meulensteen wrote: > Hi, > I was wondering, is there any way to activate word-wrap on a table column? I > have two columns, a datetime and a text note. The note needs word wrap badly > in order to be legible. > > Any ideas? I can't find any relevant properties or examples anywhere.
I'm assuming that by "Table" you really mean "Grid". dColumn has a WordWrap property: http://paul.dabodev.com/doc/api/dabodoc/dabo.ui.uiwx.dGrid.dColumn.html#Properties_WordWrap So do something like: grd.Columns[1].WordWrap = True Paul -- http://paulmcnett.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]
