Hello,
I am attempting to create a series of tables in a document. I want the border of the table to be visible but the borders of the individual cells to be invisible. I have tried several methods to hide the cell borders as documented in the code below. Please let me know what I'm missing.
Also ...
Search found 5 matches
- Wed Oct 17, 2007 11:12 pm
- Forum: Support
- Topic: Invisible Cell Borders
- Replies: 1
- Views: 7776
- Wed Oct 17, 2007 7:14 pm
- Forum: Support
- Topic: Tables in CBuilder
- Replies: 4
- Views: 11870
- Wed Oct 17, 2007 11:55 am
- Forum: Support
- Topic: Tables in CBuilder
- Replies: 4
- Views: 11870
More Info
I left this attempt out of my previous post:
TRVTableItemInfo *rvTable;
rvTable = TRVTableItemInfo::CreateEx(2, 3, rvDoc->RVData);
This will not compile with the error "Undefined symbol 'CreateEx'".
Karl
TRVTableItemInfo *rvTable;
rvTable = TRVTableItemInfo::CreateEx(2, 3, rvDoc->RVData);
This will not compile with the error "Undefined symbol 'CreateEx'".
Karl
- Wed Oct 17, 2007 11:51 am
- Forum: Support
- Topic: Tables in CBuilder
- Replies: 4
- Views: 11870
Additional Information
I have scoured the help and tried many different things. I'm sure I am missing something very easy. Here is the code I have tried:
These will not compile:
TRVTableItemInfo rvTable;
TRVTableItemInfo *rvTable = new TRVTableItemInfo();
These throw an exception:
TRVTableItemInfo *rvTable = new ...
These will not compile:
TRVTableItemInfo rvTable;
TRVTableItemInfo *rvTable = new TRVTableItemInfo();
These throw an exception:
TRVTableItemInfo *rvTable = new ...
- Tue Oct 16, 2007 9:36 pm
- Forum: Support
- Topic: Tables in CBuilder
- Replies: 4
- Views: 11870
Tables in CBuilder
Hello,
This is newbie question.
How do I instantiate a table in CBuilder?
The Help file refers to a function called CreateEx which does not seem to exist. I attempted a "new" of a table object and got an exception.
Sorry for such a simple question, but I cannot seem to find the answer on my own ...
This is newbie question.
How do I instantiate a table in CBuilder?
The Help file refers to a function called CreateEx which does not seem to exist. I attempted a "new" of a table object and got an exception.
Sorry for such a simple question, but I cannot seem to find the answer on my own ...