Search found 9 matches

by rtcary
Sun Nov 26, 2006 2:34 pm
Forum: Support
Topic: Associating a rve file with TRichView
Replies: 6
Views: 18965

Sorry for the confusion in my explanation. Simplified, I have a TRichView component with it's TRVStyle and I want to load a rvf file, Test.Rvf. For unknown reasons, the TRichView remains blank. sFile := 'Test.rvf'; if FileExists(sFile) then if RichViewRvf.LoadRvf(sFile) then ShowMessage('Success');
by rtcary
Sun Nov 26, 2006 12:49 am
Forum: Support
Topic: Associating a rve file with TRichView
Replies: 6
Views: 18965

I have a rvf file that I want to display for the user, so I thought that the TRichView component is the best component to use (rather than the TRichViewEdit component). The user will then decide if they want to email it or edit the file or create a new one. If they want to edit/create the file, then...
by rtcary
Sat Nov 25, 2006 5:58 pm
Forum: Support
Topic: Associating a rve file with TRichView
Replies: 6
Views: 18965

Associating a rve file with TRichView

I have a TRichView component and I want to associate a rve file with it for display only. Which property to I set so the file will be displayed?
by rtcary
Fri Nov 24, 2006 5:27 pm
Forum: Support
Topic: Determining if TRichViewEdit is empty
Replies: 4
Views: 16781

Thank you! Works like a champ!

Todd
by rtcary
Thu Nov 23, 2006 3:56 pm
Forum: Support
Topic: Determining if TRichViewEdit is empty
Replies: 4
Views: 16781

Determining if TRichViewEdit is empty

Is there a property so one can tell if TRichViewEdit is empty? No characters present?

Thank you...
by rtcary
Wed Nov 01, 2006 11:06 pm
Forum: Support
Topic: Losing link when exporting to HTML
Replies: 5
Views: 17387

Solved! Needed to add

RichViewEdit.OnWriteHyperlink := RichViewEditWriteHyperlink;

to my FormMain.

Thank you for the clue as where to look!!

Todd
by rtcary
Wed Nov 01, 2006 5:59 pm
Forum: Support
Topic: Losing link when exporting to HTML
Replies: 5
Views: 17387

This code is in place, but when I put a break point on it, it does not get executed when exporting to HTML. // Exporting hyperlink to RTF and HTML procedure TFormSimpleEdit.RichViewEditWriteHyperlink(Sender: TCustomRichView; id: Integer; RVData: TCustomRVData; ItemNo: Integer; SaveFormat: TRVSaveFor...
by rtcary
Wed Nov 01, 2006 2:24 pm
Forum: Support
Topic: Losing link when exporting to HTML
Replies: 5
Views: 17387

Losing link when exporting to HTML

I am using RichView 1.9.24 (Delphi 5). When I create a link and then Export it as HTML, the link is missing: <body> <p>Press <span class=rvts1>here</span> to see more pictures.</p> </body></html> The link is in the rvf file. Am I missing something with the installation since the demo works correctly...
by rtcary
Wed Sep 06, 2006 1:32 pm
Forum: Support
Topic: Seeking help with iPro & SMTP
Replies: 0
Views: 12727

Seeking help with iPro & SMTP

Is there anyone on this forum that can refer me to a place where I can get some help with the open source iPro, formerly by Turbo Power? I am trying to implement an email function into an editor built around Rich View and need some help communicating to the SMTP client (my HTML text is in a stream a...