Cannot load image in TRichView

General TRichView support forum. Please post your questions here
Post Reply
pruettm
Posts: 23
Joined: Wed Nov 30, 2011 9:08 pm

Cannot load image in TRichView

Post by pruettm »

I have a RVF I am loading from a DB Stream that has 3 image files embedded in it. The first 2 load successfully, but the 3rd does not appear.

Funny enough I have a TRichView in our main application that shows it, but every attempt to load it in any other example fails.

I am sorry that I cannot provide an example app that demonstrates the issue, but I do have an RVF stream that I saved to file that should demonstrate the issue.

Any help or guidance would be of great relief to me.

On this PDF drive is the RVFStream.rvf file:

ftp://ftp.medevolve.com/development/Mat ... Stream.rvf
Sergey Tkachenko
Site Admin
Posts: 17267
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Post by Sergey Tkachenko »

RVF contains names of graphic classes used to store images.
This RVF contains: TBitmap, TBitmap, TdxSmartImage.
To load it, you need to call
RegisterClasses([TdxSmartImage])
one time before the first loading.
pruettm
Posts: 23
Joined: Wed Nov 30, 2011 9:08 pm

Post by pruettm »

This resolved the issue. Thank you very much.
Post Reply