Search found 9400 matches

by Sergey Tkachenko
Wed Jun 20, 2007 12:59 pm
Forum: Support
Topic: Some aspects of text styles lost during transition to RVF
Replies: 8
Views: 22468

I cannot reproduce this problem. Please send me an example of RVF file
by Sergey Tkachenko
Wed Jun 20, 2007 1:38 am
Forum: Support
Topic: Some aspects of text styles lost during transition to RVF
Replies: 8
Views: 22468

Try to save the resulting file as RVF instead of RTF (make sure that these RVFOptions are included in the second TRichView too).
If this RVF file will have the same problems as RTF, the problem was in the first step.
by Sergey Tkachenko
Wed Jun 20, 2007 1:33 am
Forum: Support
Topic: Cant install RVXML after installing TRichView reg-key
Replies: 9
Views: 23529

1) Yes, it is correct, references to TMemoryStream must be changed to TRVMemoryStream. RVClasses must be added in "uses" of RVXML units that use TRVMemoryStream. 2) I believe the linker problems disappear when you restore RVXMLCB6.bpk from the installation. I suppose you saved the package ...
by Sergey Tkachenko
Tue Jun 19, 2007 11:20 am
Forum: Support
Topic: HTML Buttons
Replies: 4
Views: 12534

I am afraid it would be difficult to do, RVHtmlImport does not support buttons. And that code do you want to execute on clicking, JavaScript?
by Sergey Tkachenko
Tue Jun 19, 2007 11:18 am
Forum: Support
Topic: Save rvhtmlimport in stringrid
Replies: 12
Views: 23018

Sorry, I do not undestand your code.
What does ms.SaveToStream(ms) mean?

Do you want to load HTML source code in rvesource and set it to stringgrid? Why not to use StringGrid.Cells[0,0] := memo1.Text?
by Sergey Tkachenko
Tue Jun 19, 2007 11:12 am
Forum: Support
Topic: Font style combo shows text, font size combo not
Replies: 1
Views: 7997

TRVFontSizeComboBox shows font sizes only after its FontName property is assigned. It shows only font sizes available for the given font (or a predefined set of sizes fo TrueType fonts)
by Sergey Tkachenko
Tue Jun 19, 2007 11:08 am
Forum: Support
Topic: Delta symbol appears as a question mark
Replies: 3
Views: 11217

Please send this RTF file to me by e-mail
by Sergey Tkachenko
Tue Jun 19, 2007 11:08 am
Forum: Support
Topic: Some aspects of text styles lost during transition to RVF
Replies: 8
Views: 22468

Make sure that [rvfoSaveTextStyles, rvfoSaveParaStyles] is included in RVFOptions of TRichView that saves RVF.
by Sergey Tkachenko
Sun Jun 17, 2007 9:45 am
Forum: Support
Topic: WARNING. Duplicate resource(s):
Replies: 1
Views: 8269

In order to use GlyFX unit, open RichViewActions.pas and remove the dot from {.$DEFINE USEGLYFX}. If you have references to dmActions unit from YOUR units' "uses", delete them.
by Sergey Tkachenko
Wed Jun 13, 2007 7:35 pm
Forum: Support
Topic: Problem With Adding Shortcuts To RVE
Replies: 2
Views: 9914

I thought that just having these actions is enough. I'll test when I return.
by Sergey Tkachenko
Wed Jun 13, 2007 7:30 pm
Forum: Support
Topic: Cant install RVXML after installing TRichView reg-key
Replies: 9
Views: 23529

Make sure that you deleted files of the previous (trial) version of trichview - all dcu, obj, hpp files.
RvXml package must be rebuilt after updating trichview
by Sergey Tkachenko
Tue Jun 12, 2007 10:58 am
Forum: Support
Topic: Save rvhtmlimport in stringrid
Replies: 12
Views: 23018

Use richview.SaveHtmlToStream or SaveToStreamEx to save document to TStringStream.
by Sergey Tkachenko
Mon Jun 11, 2007 6:46 pm
Forum: Support
Topic: Save rvhtmlimport in stringrid
Replies: 12
Views: 23018

Do you load document by rvhtmlimporter from some string? Why not to use this string to assign to the stringgrid cell? I do not remember if it supports multiline text, though.
by Sergey Tkachenko
Mon Jun 11, 2007 6:35 pm
Forum: Support
Topic: Cannot insert BOLD Text in 1st Row of tables ar runtime
Replies: 5
Views: 24626

this code will work properly only if the both editors are linked to the same rvstyle (or to rvstyles with the same collections of styles). Table.SaveToStream only saves the fact what the first item in the cell has the 5th style. But properties of this style are not saved. If in the destination edito...
by Sergey Tkachenko
Mon Jun 11, 2007 6:27 pm
Forum: Support
Topic: SearchText autoscroll
Replies: 1
Views: 7879

No, it always makes the selection visible. But you can block any redrawing in the editor. In the newest trichview version, you can use BeginUpdate and EndUpdate methods.