Hi,
There is a problem in saving Richview as RTF, if Richview contains table and in table if there are some controls.
Actually, In RV table, i am inserting a frame (TFrame) in every cell.
When i am trying to save it as RTF format, it will save only table not the frames inserted in the cell of the RV table.
please help me for this.
Thanks & Regards:
Tarun
Problem in Saving RV as RTF
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Controls are saved in RVF by default (all their published properties are stored, except for links to other components and events).
In order to load controls, they must be registered using RegisterClass.
For example:
RegisterClass(TButton);
Call registering code one time before the first RVF loading.
In order to load controls, they must be registered using RegisterClass.
For example:
RegisterClass(TButton);
Call registering code one time before the first RVF loading.