Search found 9734 matches

by Sergey Tkachenko
Sun May 06, 2007 9:52 am
Forum: Support
Topic: Animated Bitmaps
Replies: 12
Views: 37848

Fixed version is available for registered users.
by Sergey Tkachenko
Sun May 06, 2007 9:48 am
Forum: Support
Topic: TRichView and URL's
Replies: 2
Views: 12150

Obviously, it's not possible to detect URLs on typing in TRichView. Because TRichView is not an editor and you cannot type in it. Use TRichViewEdit instead.

As for detecting all URLs in document, procedures ScanURLs and ClearHypertext (from the demo's ScanURLs.pas) can be called both for TRichView ...
by Sergey Tkachenko
Sat May 05, 2007 8:47 am
Forum: Support
Topic: Page Margins
Replies: 9
Views: 33087

RichViewEdit's margins are different from margins on page. See the picture in the help topic about TRVPrint.
I think it does not make sense to show printing margins in editor. MS Word does not show them in "Normal" view mode as well (only in "Print Layout" mode)
by Sergey Tkachenko
Sat May 05, 2007 8:38 am
Forum: Support
Topic: Animated Bitmaps
Replies: 12
Views: 37848

Oops, there is a bug preventing bitmap animation to work :(
If you are a registered user, I can give you instructions how to fix it. If not, and this functionality is critical for you, I can send updated trial to you.

All changes not included in the help file are listed in readme.txt, in the same ...
by Sergey Tkachenko
Fri May 04, 2007 7:14 pm
Forum: Support
Topic: Animated Bitmaps
Replies: 12
Views: 37848

Did you set RichViewEdit1->AnimationMode = rvaniOnFormat ?
by Sergey Tkachenko
Fri May 04, 2007 4:34 pm
Forum: Support
Topic: Do I have as aligning for the left a text...
Replies: 4
Views: 13689

You did not explain how you replace fields with values.
Do you use SearchText, then InsertText?
Or do you use mail-merge procedures from http://www.trichview.com/forums/viewtopic.php?t=8 ?

I assume you use mail-merging procedures. I take the demo mailmerge-text2.zip and modified it so that it ...
by Sergey Tkachenko
Thu May 03, 2007 5:10 pm
Forum: Support
Topic: Copying Table Cell Properties...
Replies: 11
Views: 34911

I do not want to save RVPrint's properties in RVF by default. Because page properties will be implemented differently in future versions.
by Sergey Tkachenko
Thu May 03, 2007 5:01 pm
Forum: Support
Topic: Animated Bitmaps
Replies: 12
Views: 37848

Bitmap animation is supported.
Set the following integer properties (see SetItemExtraIntProperty):
rvepImageWidth,
rvepImageHeight,
rvepAnimationInterval.

Bitmap is sliced into frames (rvepImageWidth x rvepImageHeight) arranged in rows and columns. Animation is enabled if you set ...
by Sergey Tkachenko
Thu May 03, 2007 4:33 pm
Forum: Support
Topic: Copying Table Cell Properties...
Replies: 11
Views: 34911

1) This week (update for registered users)
2)
NewCell->Clear();
NewCell->AddNLATag('', StyleNo, ParaNo);
where
ParaNo = SourceCell->GetItemPara(0);
StyleNo = index of style of the first text item in SourceCell (or 0, if this cell does not have text items)

3) What do you mean?
by Sergey Tkachenko
Thu May 03, 2007 4:29 pm
Forum: Support
Topic: curItemNo doesn't seem to change
Replies: 2
Views: 13208

It's better to use this code:
if (RichViewEdit1->InsertBullet(0, ImageList))
{
RichViewEdit1->SetCurrentBulletInfo(...)
}

If you want to use SetBulletInfoEd,
if (RichViewEdit1->InsertBullet(0, ImageList))
{
RichViewEdit1->TopLevelEditor->SetBulletInfoEd(RichViewEdit1->TopLevelEditor ...
by Sergey Tkachenko
Wed May 02, 2007 6:16 pm
Forum: Support
Topic: Highlighting Text and Tags
Replies: 1
Views: 12789

Fixed
by Sergey Tkachenko
Wed May 02, 2007 6:16 pm
Forum: Examples, Demos
Topic: [Example] Modification of "Search and Mark" demo
Replies: 16
Views: 219944

Updated. New (marked) items retain tag of the original text item.

Note: this unit is included in RichViewActions. If you use RichViewActions, copy this unit over the RichViewActions' one.
by Sergey Tkachenko
Wed May 02, 2007 5:54 pm
Forum: Support
Topic: Do I have as aligning for the left a text...
Replies: 4
Views: 13689

Ok, I'll make an example tomorrow.
by Sergey Tkachenko
Wed May 02, 2007 5:53 pm
Forum: Support
Topic: Copying Table Cell Properties...
Replies: 11
Views: 34911

Table.InsertRows already uses AssignAttributesFrom for copying cell properties to the inserted rows.
But only cell properties are copied, not cell content. New cells have one empty text item of 0 text style and 0 paragraph style.
Well, in the next update, styles of this text item will be copied too.
by Sergey Tkachenko
Wed May 02, 2007 12:58 pm
Forum: Support
Topic: Traversing hyperlinks
Replies: 8
Views: 25138

I mean a procedure like ChangeLinks, see above in this topic.