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).
Search found 5 matches
- Sat Jul 28, 2018 8:32 am
- Forum: Support
- Topic: Error in Reading RVF Subdocument
- Replies: 5
- Views: 20609
- Mon Jul 23, 2018 7:48 pm
- Forum: Support
- Topic: Error in Reading RVF Subdocument
- Replies: 5
- Views: 20609
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:
I tried to load the same rvf, but I have the same error.
I bought it from you this month.
Now I tried:
Code: Select all
procedure TFemail_Client.FormCreate(Sender: TObject);
begin
RegisterClasses([TdxSmartImage, TdxPNGImage]);
......
- Mon Jul 23, 2018 7:49 am
- Forum: Support
- Topic: Error in Reading RVF Subdocument
- Replies: 5
- Views: 20609
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 ...
- Mon Jul 23, 2018 7:35 am
- Forum: Support
- Topic: RichViewImportPicture - load Pictures from Web (emails)
- Replies: 2
- Views: 11135
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);
------
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);
------
- Thu Jul 19, 2018 8:33 am
- Forum: Support
- Topic: RichViewImportPicture - load Pictures from Web (emails)
- Replies: 2
- Views: 11135
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 ...