Hello,
I have a datagrid column header that is quite long, and I would like it to
appear on 2 lines instead of 1.
Is this possible?
TIA.
Amber
rviray - 29 Sep 2005 19:23 GMT
If you don't want the Datagrid "Wrap Text Within Cell" to handle th
line breaks....then:
if your app is on the web...use "<BR>" in your column via SQL (o
whatever your backend is)...i.e. "Select name as [this is pretty <BR
column name huh] from tblSomething"
if it's for a windows app...try using char(10)+char(13) <-- check th
order on that...i may have reveresed it..
--
rvira
amber - 30 Sep 2005 17:15 GMT
what does that mean - "if you don't want the datagrid "Wrap Text Within
Cell" to handle the line breaks ??
Amber