Search found 9731 matches

by Sergey Tkachenko
Thu May 29, 2008 10:18 am
Forum: Support
Topic: LoadRVFFromStream and problems with bullets
Replies: 13
Views: 33291

If styles were not saved, they are lost. That includes all text and paragraph attributes, as well as all properties of bullets&numbering (except for list level and initial numbering counter that are stored with list markers)
In this case, all what you can do is to load documents with loss of ...
by Sergey Tkachenko
Thu May 29, 2008 10:14 am
Forum: Support
Topic: copy data between two TRichViewEdits
Replies: 3
Views: 23667

AppendFrom is the fastest way to copy data from one TRichView to another, but it does not support all item types, including controls and tables.
by Sergey Tkachenko
Thu May 29, 2008 10:12 am
Forum: Support
Topic: How to print Margin Line ?
Replies: 2
Views: 12925

Draw it in OnPagePrepaint event.
This rectangle is specified in PrintAreaRect parameter.
by Sergey Tkachenko
Thu May 29, 2008 10:11 am
Forum: Examples, Demos
Topic: [Demo] Sending HTML email. Saving MIME-encoded files.
Replies: 40
Views: 3398820

Demo for that?
http://www.trichview.com/support/files/mime.zip contains demos:
- saving EML/MHT file (HTML + images), for Delphi and for C++
- sending HTML email using Indy components (plain text + HTML + images + attached files), for Delphi
by Sergey Tkachenko
Wed May 28, 2008 5:30 am
Forum: Support
Topic: LoadRVFFromStream and problems with bullets
Replies: 13
Views: 33291

I think your old documents were saved without styles, so they can be loaded properly only if collections of styles in RVStyle are the same as at the moment of saving.
If you cannot reproduce these collections, you can still load them, including rvfoConvUnknownStylesToZero in RVE.RVFOptions.
For text ...
by Sergey Tkachenko
Tue May 27, 2008 7:31 pm
Forum: Support
Topic: LoadRVFFromStream and problems with bullets
Replies: 13
Views: 33291

What's the value of RVFWarnings property after loading?
by Sergey Tkachenko
Tue May 27, 2008 11:45 am
Forum: Support
Topic: Drag and drop
Replies: 3
Views: 11222

The selection must start at the beginning of the line and must end at the beginning of the next line.
by Sergey Tkachenko
Tue May 27, 2008 11:41 am
Forum: Examples, Demos
Topic: How to use live spelling in ActiveX
Replies: 1
Views: 32901

How to use live spelling in ActiveX

By default, live spelling does not work when TRichView is placed on an ActiveForm in ActiveX.

matvey suggested the solution:
Place a timer on the ActiveForm, and call CheckSynchronize in the timer procedure.
Delphi 6 or newer is required.
by Sergey Tkachenko
Mon May 26, 2008 5:39 pm
Forum: Support
Topic: Save document with margins
Replies: 12
Views: 25068

Do you use ScaleRichView (or how do you change top and bottom margins?)
by Sergey Tkachenko
Fri May 23, 2008 5:09 pm
Forum: ScaleRichView
Topic: SRVControls - What´s that?
Replies: 1
Views: 17100

SRVControls is an optional package.
They are analogs of standard controls, but they work better inside ScaleRichView (for example, TEdit does not show selection and caret when inserted in ScaleRichView, but TSRVEdit does).
DirectX is required only for one of SRVControls - TSRVMediaPlayer.

More info ...
by Sergey Tkachenko
Fri May 23, 2008 5:06 pm
Forum: ScaleRichView
Topic: How can I print headers and footer?
Replies: 1
Views: 17109

Not supported yet. Planned for this summer.
While you can use event (OnPaint, as far as I remember) to draw addition info on pages.
by Sergey Tkachenko
Fri May 23, 2008 5:00 pm
Forum: Support
Topic: Save document with margins
Replies: 12
Views: 25068

Did you set the proper value for rve.DocParameters.Units?
by Sergey Tkachenko
Fri May 23, 2008 2:35 pm
Forum: Support
Topic: Save document with margins
Replies: 12
Views: 25068

In RVF file?
Include rvfoSaveLayout and rvfoLoadLayout in RichViewEdit.RVFOptions.
by Sergey Tkachenko
Thu May 22, 2008 5:45 pm
Forum: Support
Topic: RvHtmlImporter v0.0027 bugs
Replies: 27
Views: 80765

Sorry for delay (there was many problems while moving site to the new location, so it caused delays in answers).

Open RVHtmlImport.pas, find procedure WriteTSCR, change the first "if" (line 2217) to

Code: Select all

   if (ts = ' ') and (GetCurParaNo>=0) then
      s := ''
    else
      s := ts;
by Sergey Tkachenko
Thu May 22, 2008 9:44 am
Forum: Support
Topic: Can we Save the Data in Rich View with out Format
Replies: 1
Views: 9149

Formatting is not necessary if you do not use functions requiring formatted documents.
With unformatted documents you cannot:
- display the control;
- use search or any other methods related to selection;
- (in TRichViewEdit) use any editing methods;
- save RTF files containing tables.
Otherwise ...