Search found 3 matches

by mouse5312
Sun Apr 02, 2006 9:27 pm
Forum: Support
Topic: InsertRowsBelow in TRichView
Replies: 1
Views: 9620

InsertRowsBelow in TRichView

Is it possible to insert a row below the table in TRichView?
I can't use BeginItemModify/EndItemModify.

I tried:
table->Select(3,0,1,1); //First cell in last row.
table->InsertRowsBelow(1);
But this doesn't work. What does work?
by mouse5312
Sat Apr 01, 2006 7:14 pm
Forum: Support
Topic: Add line in multiple cells
Replies: 1
Views: 9154

Add line in multiple cells

I'm now able to draw a table and add some data in this table. Now I want to add a whole line in the table, this line are words that have to be splitted in multiple cells. Is there a way to add text like: table->Cells[0][0]->AddNL("machine [split sign] operator",0,0); So I can add all the t...
by mouse5312
Fri Mar 31, 2006 3:04 pm
Forum: Support
Topic: Convert plain text to table
Replies: 2
Views: 13095

Convert plain text to table

Hello,

I've got a program that filters text out of log files in Borland CBuilder 6.
Now I want to print this text (and a header/footer) in a nice table in TRichview (not TRichViewEdit).
But how do I make a table in TRichView, without using any database program?