Search found 3 matches

by Benna
Thu Aug 12, 2010 11:13 am
Forum: Support
Topic: Managing Tables in C++
Replies: 4
Views: 9242

Thanks Sergey, i've solved using this statement:

Code: Select all

return dynamic_cast<TRVTableItemInfo *>(pRichView->RVData->GetItem(i))
Right now i think i'm ok, if i had the need you've mention i'll let you know.
Thanks again so much
by Benna
Thu Aug 12, 2010 8:21 am
Forum: Support
Topic: Managing Tables in C++
Replies: 4
Views: 9242

I want to create a method inside my class called


TRVTableItemInfo * GetTable(AnsiString TableName)


returning a pointer to a table already created in the past.
This method will be used inside aother method, for example:


void clsRichView::AddColRight(int nCol)
{
TRVTableItemInfo *table ...
by Benna
Tue Aug 10, 2010 2:56 pm
Forum: Support
Topic: Managing Tables in C++
Replies: 4
Views: 9242

Managing Tables in C++

Hi all, i'm starting to use this amazing component but i have quite some questions about managing tables.

I did a simple test form with the component TRichVieEdit and a button that creates a table.
Table is created correctly, now i wnat to manage that table such has adding or deleting columns/rows ...