datagrid - Control Wrapping

  • Thread starter Thread starter G. Dean Blake
  • Start date Start date
G

G. Dean Blake

I want to put several lines of name and address in a single column of a
datagrid. I tried to control wrapping with vbcrlf but it didn't work. Is
there a way to do this?
Thanks,
Dean
 
Try "<br>" instead of vbCrlf

HTH
Suresh

----- G. Dean Blake wrote: ----

I want to put several lines of name and address in a single column of
datagrid. I tried to control wrapping with vbcrlf but it didn't work. I
there a way to do this
Thanks
Dea
 
You could bring out the details from sql as the one column

Just put some <br> tags to break for new lines.

select name +'<br>'+ address as onecolumn from whatever
 
Back
Top