Please send me the file artikels.db_memo2_220.rvf to richviewgmailcom
I still does not understand the reason of AV.
Openening a RVF file
-
- 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:
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Thank you, this is a bug.
It happens when attempting to export list markers (bullets/numbering) to text. This document contains list markers having ListNo=-1. Such markers are normally not displayed, and the components works as if they do not exist.
However, for text exporting, such list markers were not taken into account.
A quick fix:
open RVMarker.pas, find TRVMarkerItemInfo.AsText, add after the line LevelInfo := GetLevelInfo(TCustomRVData(RVData).GetRVStyle);:
This fix will be included in the next update.
PS: if you set TextOnly parameter of SaveTextToStream[W] = True, the component will not save list markers to the stream. For these non-existing text markers, it does not matter. However, it may matter for normal bullets/numbering.
It happens when attempting to export list markers (bullets/numbering) to text. This document contains list markers having ListNo=-1. Such markers are normally not displayed, and the components works as if they do not exist.
However, for text exporting, such list markers were not taken into account.
A quick fix:
open RVMarker.pas, find TRVMarkerItemInfo.AsText, add after the line LevelInfo := GetLevelInfo(TCustomRVData(RVData).GetRVStyle);:
Code: Select all
if LevelInfo=nil then
exit;
PS: if you set TextOnly parameter of SaveTextToStream[W] = True, the component will not save list markers to the stream. For these non-existing text markers, it does not matter. However, it may matter for normal bullets/numbering.