CHeighlund
Programmer
I'm working with a TStringGrid component, and I've been requested to break some of the text in a specific group of the boxes, as below:
Before:
After:
I know that the chr(13) command can break some strings, as I've used that before in MessageDlg commands, but in the TStringGrid I'm working with, doing this simply leaves a black line visible on the screen. The text (actually html) output the program generates does have the break in the correct spot, however.
Is there some way to get the break to appear on the screen, and if so, what would be a good place to start looking for it?
Before:
Code:
Total - Flurbs
After:
Code:
Total
Flurbs
I know that the chr(13) command can break some strings, as I've used that before in MessageDlg commands, but in the TStringGrid I'm working with, doing this simply leaves a black line visible on the screen. The text (actually html) output the program generates does have the break in the correct spot, however.
Is there some way to get the break to appear on the screen, and if so, what would be a good place to start looking for it?