Search found 9416 matches

by Sergey Tkachenko
Sat Jul 08, 2006 7:58 am
Forum: Support
Topic: [TRichView bug?] Problem with white font and AddPicture
Replies: 10
Views: 25369

Please send this file me by e-mail ( [email protected] ).
Rapidshare is almost useless for me, because I have a common external IP with many users of my local network, so Rapidshare usually says me that my download limit is exceeded.
by Sergey Tkachenko
Sat Jul 08, 2006 7:49 am
Forum: Support
Topic: Unicode SearchText and InsertText
Replies: 3
Views: 11815

You should be able to see it now
by Sergey Tkachenko
Sat Jul 08, 2006 7:46 am
Forum: Support
Topic: How to avoid CTRL-I acting as TAB?
Replies: 1
Views: 8405

Create an action or menu item with Ctrl+I shortcut.
by Sergey Tkachenko
Fri Jul 07, 2006 5:57 pm
Forum: Support
Topic: Using of special characters
Replies: 1
Views: 7847

For special symbols, use Unicode (see http://www.trichview.com/forums/viewtopic.php?t=70). If, for some reasons, you do not want to use Unicode: - for some special symbols, you can use "Symbols" font. - for Greek characters, you can use some font with Charset=GREEK_CHARSET You can move tex...
by Sergey Tkachenko
Fri Jul 07, 2006 5:49 pm
Forum: Support
Topic: Unicode SearchText and InsertText
Replies: 3
Views: 11815

InsertTextW is already implemented.
As for unicode search, see here: http://www.trichview.com/forums/viewtopic.php?t=775 (the link is only for registered users)
by Sergey Tkachenko
Thu Jul 06, 2006 11:28 am
Forum: Support
Topic: RichView 1.9.0.1 - Client Side Data Causing program to die
Replies: 1
Views: 7380

I think it's because of a huge amount of unused styles.
If you use DBRichViewEdit, set AutoDeleteUnusedStyles = True.
Or load document, call DeleteUnusedStyles(True, True, True) and save it again.
And yes, you can send me files by email if necessary.
by Sergey Tkachenko
Thu Jul 06, 2006 11:25 am
Forum: Support
Topic: How To Center Vertically
Replies: 2
Views: 9614

Set RichView.VAlign = tlCenter.

TRichView is not TMemo, lines can be of different height.
by Sergey Tkachenko
Wed Jul 05, 2006 6:21 pm
Forum: Support
Topic: Problems with Pchars Tags
Replies: 2
Views: 9847

Change
Tag := PChar(RV_CampoTexto.GetItemTag(ItemNo));
to
Tag := PChar(RVData.GetItemTag(ItemNo));
(your code will not work if the link is in table cell).

Make sure that rvoTagsArePChars is included in RV_CampoTexto.Options.
by Sergey Tkachenko
Sun Jul 02, 2006 4:27 pm
Forum: Support
Topic: Bug in RVGetTextLength function
Replies: 2
Views: 11837

Well, yes, calling Format saves the situation for TRichViewEdit (because it adds one empty text item). But not for TRichView, so it may be really considered as a bug. Fix: open RVLinear.pas, change RVGetTextLength: function RVGetTextLength(rv: TCustomRichView): Integer; begin Result := 0; if rv.Item...
by Sergey Tkachenko
Sun Jul 02, 2006 4:18 pm
Forum: Support
Topic: TDBRichView and corresponding database field update
Replies: 2
Views: 12740

Actually, DBRichViewEdit->CanChange() calls table->Edit(). Calling CanChange() & Change() is required only if DBRichViewEdit was modified using non-editing methods (such as Load** or Add*** methods). CanChange() & Change() are not required if the document was modified using editing methods (...
by Sergey Tkachenko
Thu Jun 29, 2006 8:50 pm
Forum: Support
Topic: How could't not remove item into undolist
Replies: 2
Views: 10743

Sorry, it's not possible.
If one operation is not written in undo list, all records in undo list made before this operation become invalid.
by Sergey Tkachenko
Wed Jun 28, 2006 7:55 pm
Forum: Support
Topic: [TRichView bug?] Problem with white font and AddPicture
Replies: 10
Views: 25369

Please send me this document saved as RVF file.
by Sergey Tkachenko
Tue Jun 27, 2006 6:55 pm
Forum: Support
Topic: pagination feature?
Replies: 1
Views: 8677

not supported in TRichView or TRichViewEdit, only in TRVPrintPreview.
by Sergey Tkachenko
Tue Jun 27, 2006 6:54 pm
Forum: Support
Topic: controls position
Replies: 7
Views: 22469

TPoint ClientCoords = ctrl->ClientToParent(Point(0,0), RichViewEdit1); TPoint DocCoords = RichViewEdit1->ClientToDocument(ClientCoords); But it will not help you with printing, because a position on page is not a position on screen. If you want to customize printing, process RVPrint->OnPrintComponen...
by Sergey Tkachenko
Tue Jun 27, 2006 6:43 pm
Forum: Support
Topic: Copy to clipboard without crash
Replies: 3
Views: 14306

Copying may be really very slow if document contains multimegabyte text.
In the current version, it can be improved only by modifying VCL source (changing MemoryDelta from Classes.pas to lager value (power of 2)). In the next update, this problem will be fixed without modifying VCL source.