v14.12.6 load issue

General TRichView support forum. Please post your questions here
Post Reply
NZ001
Posts: 1
Joined: Thu Jul 23, 2026 11:01 pm

v14.12.6 load issue

Post by NZ001 »

Hi,

I have TRichview v14.12.6 which loads and displays an rvf file with prefix 8131 correctly but does does not load a file with prefix 8132 and indicates there are no errors either.

From documentation it seems like this version should be able to load both formats - code as below,

rchvw1.RVFOptions := [rvfoConvUnknownStylesToZero, rvfoConvLargeImageIdxToZero];
if rchvw1.LoadRVF(dlgopen.FileName) then
begin
ShowMessage(dlgopen.FileName);
rchvw1.Format;
rchvw1.Invalidate;
rchvw1.Update;
end
else
begin
ShowMessage(RVFWarningsToString(rchvw1.RVFWarnings));
end;

For 8132 it always ends up in else block but says there are '[none]' errors

Any assistance appreciated.
Sergey Tkachenko
Site Admin
Posts: 18190
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Re: v14.12.6 load issue

Post by Sergey Tkachenko »

TRichView 14.12.6 is too old version.
RVF version 1.3.2 was introduced in TRichView version 17.3. However, it was a minor change: In RVF v1.3.2, names of non-text items are stored as UTF-8 (in older versions, they were stored as ANSI strings). This change must not prevent loading.
Please send me a sample RVF file that cannot be loaded. You can attach it to this forum thread.
Post Reply