Search found 5 matches

by josef-b
Sat Jul 28, 2018 8:32 am
Forum: Support
Topic: Error in Reading RVF Subdocument
Replies: 5
Views: 18832

Re: Error in Reading RVF Subdocument

Here I'm sending sample project, without RVF. Do you still have my RichView_Test.rvf including the problem?

It is too long for sending it here.

I sent it completey by email (gmail).
by josef-b
Mon Jul 23, 2018 7:48 pm
Forum: Support
Topic: Error in Reading RVF Subdocument
Replies: 5
Views: 18832

Re: Error in Reading RVF Subdocument

My Version is 17.4.2 Is there a newer one?

I bought it from you this month.

Now I tried:

Code: Select all


procedure TFemail_Client.FormCreate(Sender: TObject);
begin
RegisterClasses([TdxSmartImage, TdxPNGImage]);
......
I tried to load the same rvf, but I have the same error. :(
by josef-b
Mon Jul 23, 2018 7:49 am
Forum: Support
Topic: Error in Reading RVF Subdocument
Replies: 5
Views: 18832

Error in Reading RVF Subdocument

I want do load Data from Database. procedure TFemail_client.Ein_loadRichViewFromBlob; var BlobStream : TStream; BlobFeld : TField; begin richview1.clear; with dsein do //TIBDataset begin BlobFeld := Fieldbyname('Body_Richview'); BlobStream := CreateBlobstream(Blobfeld,bmread); BlobStream.position :=...
by josef-b
Mon Jul 23, 2018 7:35 am
Forum: Support
Topic: RichViewImportPicture - load Pictures from Web (emails)
Replies: 2
Views: 9994

Re: RichViewImportPicture - load Pictures from Web (emails)

Thank you that works great now.

I inserted the following because of http error 403:
.....


IDHttp1.Request.Useragent :=
'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; MAAU)';
IdHTTP1.Get(Location, Stream);

------
by josef-b
Thu Jul 19, 2018 8:33 am
Forum: Support
Topic: RichViewImportPicture - load Pictures from Web (emails)
Replies: 2
Views: 9994

RichViewImportPicture - load Pictures from Web (emails)

I want to integrate a own small email-client in our private business application. So I want to load Pictures from web included in emails I am using THtmViewer and TRVHTMLViewImporter. procedure TF1.RichViewImportPicture(Sender: TCustomRichView; const Location: TRVUnicodeString; Width, Height: Intege...