Search found 9411 matches

by Sergey Tkachenko
Wed Jan 31, 2007 8:07 am
Forum: Support
Topic: RVPrint does not work, pls help ...
Replies: 5
Views: 15450

Please send me a simple project reproducing this problem.
by Sergey Tkachenko
Wed Jan 31, 2007 8:05 am
Forum: Support
Topic: autosave problems, using savehtmlex ...
Replies: 14
Views: 40199

Does it happen in the specific project, or in different projects?
by Sergey Tkachenko
Tue Jan 30, 2007 2:14 pm
Forum: Support
Topic: autosave problems, using savehtmlex ...
Replies: 14
Views: 40199

Please update to 1.9.24, very probably, this problem is solved
by Sergey Tkachenko
Tue Jan 30, 2007 6:52 am
Forum: Support
Topic: Printing Problem
Replies: 3
Views: 13285

This problem is solved in the latest version available for registered users.
But it is currently in beta stage.
by Sergey Tkachenko
Mon Jan 29, 2007 2:45 pm
Forum: Support
Topic: The website is restored after hack
Replies: 3
Views: 10061

Well, finally the site and the forum is 100% restored
by Sergey Tkachenko
Mon Jan 29, 2007 1:19 pm
Forum: Support
Topic: The website is restored after hack
Replies: 3
Views: 10061

Testing one more new mod - link to user profile:
Sergey Tkachenko

The code is:

Code: Select all

[user]Sergey Tkachenko[/user]
by Sergey Tkachenko
Mon Jan 29, 2007 12:59 pm
Forum: Support
Topic: The website is restored after hack
Replies: 3
Views: 10061

Testing new forum mod - colors inside code block:

Code: Select all

begin
  x := x / (x-x); [color=red]// do not do this![/color]
end;
by Sergey Tkachenko
Sun Jan 28, 2007 4:00 pm
Forum: Support
Topic: The website is restored after hack
Replies: 3
Views: 10061

The website is restored after hack

The website has been hacked.
It is restored now, but, if you find something wrong, please inform me
by Sergey Tkachenko
Sat Jan 27, 2007 4:44 pm
Forum: Support
Topic: Protecting cells in a table
Replies: 5
Views: 18241

Exclude the following options from table.Options: [rvtoRowSizing, rvtoColSizing, rvtoRowSelect, rvtoColSelect] Unfortunately, there is no option to prevent multicell selection. Protect the table's paragraph (RVStyle.ParaStyles[table.ParaNo], include the following options in the Options property of p...
by Sergey Tkachenko
Sat Jan 27, 2007 4:34 pm
Forum: Support
Topic: Emulate "Paste Special" in MSWord?
Replies: 2
Views: 9890

Create an action or menu item with this shortcut, and call RichViewEdit1.PasteText in its OnClick/OnExecute
by Sergey Tkachenko
Thu Jan 25, 2007 3:29 pm
Forum: Support
Topic: Multiline merge field
Replies: 1
Views: 8495

Yes, see mailmerge-text3 or mailmerge3 demo here:
http://www.trichview.com/forums/viewtopic.php?t=8
by Sergey Tkachenko
Wed Jan 24, 2007 6:30 pm
Forum: Support
Topic: TRichviewEdit to TRichView
Replies: 1
Views: 7896

Yes, it's possible. You can save this part in stream as RVF, then load it in another RichViewEdit. For example, this code loads the selected fragment of RichViewEdit1 to RichViewEdit2: var Stream: TMemoryStream; Stream := TMemoryStream.Create; RichViewEdit1.SaveRVFToStream(Stream, True); Stream.Posi...
by Sergey Tkachenko
Wed Jan 24, 2007 6:23 pm
Forum: Support
Topic: Localization Problem
Replies: 1
Views: 8228

In the actiontest demo, top level menus are localized directly, like mitFile.Caption := RVA_GetS(rvam_menu_File); Other menu items are associated with actions. Actions are localized by the call RVA_LocalizeForm(rvActionsResource); Check the following: 1) May be, for some reasons, links from menu ite...
by Sergey Tkachenko
Wed Jan 24, 2007 1:44 pm
Forum: Examples, Demos
Topic: [RichViewActions] Using Delphi Translation Manager
Replies: 0
Views: 24091

[RichViewActions] Using Delphi Translation Manager

RichViewActions include their own localization mechanism (see RVALocalize.pas). But you may wish to translate other forms in your project using the Translation Manager included in Delphi. The following problem occurs: when displaying any RichViewActions form, the project raises exception "resou...
by Sergey Tkachenko
Fri Jan 19, 2007 2:58 pm
Forum: Support
Topic: autosave problems, using savehtmlex ...
Replies: 14
Views: 40199

Sorry, I do not know why it happened.
Timer calling SaveHTMLEx must not cause problems.
For blocking editing, you can assign ReadOnly := True
(probably, it is required to set ReadOnly for all inplace editors, if they are active)