Search found 10 matches

by Vandy1Fan
Mon Jul 09, 2012 5:43 pm
Forum: Support
Topic: Adding a hyperlink to a picture in code
Replies: 2
Views: 10041

Adding a hyperlink to a picture in code

I would like to add a hyperlink to an image in code. I'm going to setup an action where the user will select an image for use as "Add To Calendar". They will choose the image and my program will add the hyperlink behind it. How would I do that? Thanks for all your help. This is a great product!
by Vandy1Fan
Mon Jul 02, 2012 1:23 pm
Forum: Support
Topic: Having issue with LoadRVFFromStream
Replies: 7
Views: 15967

I'm using the TDBRichViewEdit and having no issues.
by Vandy1Fan
Mon Jul 02, 2012 1:21 pm
Forum: Support
Topic: How do I embed the image in an html email?
Replies: 3
Views: 11157

Got it, thanks.
by Vandy1Fan
Fri Jun 29, 2012 9:55 pm
Forum: Support
Topic: How do I embed the image in an html email?
Replies: 3
Views: 11157

Here is the code. I am using the DBRichViewEdit. I am opening a query and the DBRichViewEdit is connected to the datasource. procedure TfrmMain.BuildEmail; var Stream: TMemoryStream; ws: String; s: TRVRawByteString; i: Integer; txtpart, htmpart, txthtmpart, txthtmlimgpart: TIdText; imgpart ...
by Vandy1Fan
Fri Jun 29, 2012 9:52 pm
Forum: Support
Topic: How do I embed the image in an html email?
Replies: 3
Views: 11157

How do I embed the image in an html email?

I noticed that when I extract the rvf data from the database field using your demo email program, it sends the email but the images are references to 1.jpg, etc.

How do you have the image actually be in the email instead of a reference?

Thanks.
by Vandy1Fan
Wed Jun 27, 2012 6:34 pm
Forum: Support
Topic: Where is the private/protected area
Replies: 1
Views: 7276

Where is the private/protected area

I want to download the images.
by Vandy1Fan
Tue Jun 26, 2012 5:16 pm
Forum: Support
Topic: Having issue with LoadRVFFromStream
Replies: 7
Views: 15967

Here is what I did

I took your example program ActionTestRibbon. I created a SQLServer table called TestRTF with 1 field called RTFData. RTFData is a varchar(MAX). I created a new TAction in the Action Manager. Here is the onExecute for the action. procedure TfrmMain.actSaveExecute(Sender: TObject); var vStream ...
by Vandy1Fan
Fri Jun 22, 2012 2:10 pm
Forum: Support
Topic: Having issue with LoadRVFFromStream
Replies: 7
Views: 15967

File sent

I have emailed you the file.

I found a way around it by using the DBRichViewEdit.

I will be officially registering later today.
by Vandy1Fan
Thu Jun 21, 2012 7:11 pm
Forum: Support
Topic: Having issue with LoadRVFFromStream
Replies: 7
Views: 15967

Here is how I'm loading the rvf to the database

procedure TfrmMain.actSaveExecute(Sender: TObject); var vStream:TStringStream; xStream:TMemoryStream; vStr:string; vSL:TStringList; begin try vSL:=TStringList.Create; vStream:=TStringStream.Create; xStream:=TMemoryStream.Create; RichViewEdit1.SaveRVFToStream(xStream, false); xStream.Position:=0 ...
by Vandy1Fan
Thu Jun 21, 2012 6:54 pm
Forum: Support
Topic: Having issue with LoadRVFFromStream
Replies: 7
Views: 15967

Having issue with LoadRVFFromStream

I am saving RVF data to a sql database in hex. I read it from the database and convert the hex to a string. I read the string to a stream. I call LoadRVFFromStream. The RichViewEdit is blank. I have tried this with both a TStringStream and a TMemoryStream. Here is the code. procedure TfrmMain ...