Search found 9415 matches

by Sergey Tkachenko
Thu Mar 27, 2008 8:11 pm
Forum: Support
Topic: Ident Bullet and Numbering
Replies: 4
Views: 12169

Your code has several problems, the most important - you use incorrect value as an index of ListStyles. The correct code is: procedure TForm3.SclRVRuler1RulerItemRelease(Sender: TObject); var ItemNo, ListNo, LevelNo, StartFrom: Integer; UseStartFrom: Boolean; rve: TCustomRichViewEdit; begin rve := S...
by Sergey Tkachenko
Thu Mar 27, 2008 7:14 pm
Forum: Support
Topic: Getting coordinates for a letter
Replies: 8
Views: 20172

Ok, it's possible to do using undocumented methods. Let we have RichView1 and RichView2, containing the same document, may be with different font sizes. For example, it can be loaded like this: procedure TForm1.Button1Click(Sender: TObject); var i: Integer; begin if OpenDialog1.Execute then begin Ri...
by Sergey Tkachenko
Thu Mar 27, 2008 6:53 pm
Forum: Support
Topic: Database Access - UNICODE
Replies: 3
Views: 9696

Follow the insttuctions for installing in BDS 2006.
Install RVPkg2006.bdsproj and RVDBPkg2006.bdsproj.
by Sergey Tkachenko
Thu Mar 27, 2008 4:11 pm
Forum: Support
Topic: Database Access - UNICODE
Replies: 3
Views: 9696

Sorry, I do not understand your question. If DBRichViewEdit.FieldFormat=rvdbText, then documents will be stored in a plain text. New version (v10.0) stores this text in UNICODE, if DBRichViewEdit is linked to UNICODE MEMO field, for example in MS Access. But this feature is only for Delphi/C++Builde...
by Sergey Tkachenko
Tue Mar 25, 2008 8:29 pm
Forum: Support
Topic: Ident Bullet and Numbering
Replies: 4
Views: 12169

Sorry for delay, I'll answer this question tomorrow.
by Sergey Tkachenko
Tue Mar 25, 2008 3:48 pm
Forum: Support
Topic: Picture Alignment...again ;-)
Replies: 18
Views: 50307

Yes, it is. But an active development of new features will start a month after, there is still a huge amount of work related to the release of v1.10.
by Sergey Tkachenko
Tue Mar 25, 2008 1:11 pm
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 100735

Update 2008-Mar-24: ScaleRichView v1.4.0

Requires: TRichView v10.0 RichViewActions v1.61

This version is uploaded as a trial in http://www.trichview.com/download/
by Sergey Tkachenko
Sun Mar 23, 2008 9:59 am
Forum: Support
Topic: How can import a block content of word into richview
Replies: 2
Views: 9225

Hello,

I believe the only way is loading the whole file, then deleting fragments before the first label and after the second label.
by Sergey Tkachenko
Thu Mar 20, 2008 11:22 am
Forum: Support
Topic: TRichviewEdit: access the complete document
Replies: 1
Views: 8779

1) You can use OnHTMLSaveImage (or OnHTMLSaveImage) event to save images under your file names, or do not save them at all.
2) You can include rvsoOverrideImages in the Options parameter of SaveHTMLToStream, and images will be saved every time starting from 1.
by Sergey Tkachenko
Tue Mar 18, 2008 10:02 am
Forum: Support
Topic: TRichviewEdit: Unable to read exported rtf files/streams
Replies: 2
Views: 10133

I received this file. The problem is caused by a zero-size bitmap: {\pict\dibitmap0\wbmwidthbytes0\picw0\pich0\picwgoal0\pichgoal0 } Fix: open RVRTF.pas, find the procedure LoadGraphic(var gr: TGraphic), add in case : rtf_pict_DIB: if FPicture.FData.Size>sizeof(TBitmapFileHeader) then begin FPicture...
by Sergey Tkachenko
Mon Mar 17, 2008 6:55 pm
Forum: Support
Topic: TRichviewEdit: Unable to read exported rtf files/streams
Replies: 2
Views: 10133

Please send them to [email protected]
by Sergey Tkachenko
Mon Mar 17, 2008 6:12 pm
Forum: ScaleRichView
Topic: ScaleRichView - shareware TRichView addon for WYSIWYG edit
Replies: 19
Views: 100735

Update 2008-Mar-17: ScaleRichView v1.3.6

Requires: TRichView v1.9.49.1 RichViewActions v1.60

new: TSRichViewEdit.HintFont property defines font for the hint window appearing on scrolling.
new: TSRVPrint.OnSendingToPrinter event, analog of the TRVPrint's event
fixes
by Sergey Tkachenko
Mon Mar 17, 2008 6:11 pm
Forum: ScaleRichView
Topic: HintPrefix bug
Replies: 2
Views: 31105

We have uploaded a new update.
The problem with icon must be fixed now.
ScaleRichView editor has a new property - HintFont. It is used to display hints on scrolling. Assign the proper charset to it.
by Sergey Tkachenko
Sat Mar 15, 2008 1:57 pm
Forum: ScaleRichView
Topic: Printing in columns of variable height, different positions
Replies: 1
Views: 12661

1. No, different margins for different pages are not supported yet. Planned for future (as MS Word-like document sections)
2. You can use custom drawing events to draw additional information on each page. No additional preview components are necessary. The event is OnPaintPage.