Search found 26 matches

by PeterPanino
Sun Apr 15, 2018 2:34 pm
Forum: Support
Topic: Fastest way to search for text in RVF files?
Replies: 1
Views: 9448

Fastest way to search for text in RVF files?

Which is the fastest way to search for a simple text string in a bunch of .RVF files?

Is there a specialized function for this or do I have to load each RVF file in a TRichView and search the text in it?
by PeterPanino
Fri Dec 29, 2017 2:08 pm
Forum: Support
Topic: VerticalScrollbarVisibleOnlyWhenNecessary?
Replies: 1
Views: 8943

VerticalScrollbarVisibleOnlyWhenNecessary?

TRichViewEdit 16.15.10

Is it possible to have the vertical scroll-bar appear only when necessary, i.e. when the text-height > client-height?
by PeterPanino
Thu Dec 28, 2017 1:17 pm
Forum: Support
Topic: How to get current Font.Name?
Replies: 2
Views: 11457

Re: How to get current Font.Name?

Thank you - this works very well!
by PeterPanino
Wed Dec 27, 2017 11:11 pm
Forum: Support
Topic: How to get current Font.Name?
Replies: 2
Views: 11457

How to get current Font.Name?

TRichViewEdit 16.15.10

How can I get the Font.Name at the caret?

I would like to show the current font name in the status bar.
by PeterPanino
Sun Jun 01, 2014 6:07 pm
Forum: Support
Topic: Strange: Shortcuts don't work inside table
Replies: 2
Views: 11636

Solved

Nevermind, I have been using a non standard feature which worked only outside table. Now I've studied the URLs demo and use the OnJump event handler which always works well.
by PeterPanino
Fri May 30, 2014 10:41 pm
Forum: Support
Topic: Strange: Shortcuts don't work inside table
Replies: 2
Views: 11636

Strange: Shortcuts don't work inside table

Hello! In a RichViewEdit I have a table and outside of the table some text. Some keyboard shortcuts are defined in a popup menu's items.

Now, when the caret is inside the table, then the shortcuts DON'T work.
But when the caret is outside the table, then the shortcuts DO work.
by PeterPanino
Fri May 30, 2014 10:10 pm
Forum: Support
Topic: rvActionInsertTable: How to preset vertical Middle alignment
Replies: 3
Views: 14692

Found a solution:

Code: Select all

procedure TformHV.rvActionInsertTable1Inserting(Sender: TrvActionInsertTable; table: TRVTableItemInfo);
var
  i: Integer;
begin
  for i := 0 to table.RowCount - 1 do  
    table.SetRowVAlign(rvcMiddle, i);
end;
Or is there a better way?
by PeterPanino
Fri May 30, 2014 9:25 pm
Forum: Support
Topic: rvActionInsertTable: How to preset vertical Middle alignment
Replies: 3
Views: 14692

Typo

Sorry for the typo. Of course the action name is:

r v A c t i o n I n s e r t T a b l e
by PeterPanino
Fri May 30, 2014 9:20 pm
Forum: Support
Topic: rvActionInsertTable: How to preset vertical Middle alignment
Replies: 3
Views: 14692

rvActionInsertTable: How to preset vertical Middle alignment

I use rvActionInsertTable to insert a table into RichViewEdit. Unfortunately, the cells in this table are all vertically aligned to the Top. So how can I preset this action to have all cells vertically aligned to Middle instead?

RichView 13.6.3
Delphi XE2
Windows 7 x64 SP1
by PeterPanino
Sat Feb 22, 2014 3:30 pm
Forum: Support
Topic: Pasting a webpage selection like in MS Word?
Replies: 0
Views: 13441

Pasting a webpage selection like in MS Word?

Hi! When I copy a selection from a webpage in the browser containing formatted text, links and images to the clipboard, and then paste this in a MS Word document, then MS Word creates a very nice copy of the selection which looks very similar to the webpage selection in the browser. Is it possible t...
by PeterPanino
Sat Jan 25, 2014 1:53 am
Forum: Support
Topic: Convert HTML Format on the clipboard to a picture?
Replies: 1
Views: 9407

Convert HTML Format on the clipboard to a picture?

Hi! I have a "HTML Format" layer on the clipboard:

Image

Can I paste this to a Richview component, then convert it to a picture and then copy this picture back to the clipboard? (Preferably hidden from the user).
by PeterPanino
Thu Dec 20, 2012 11:43 pm
Forum: Support
Topic: Reading RTF metadata Title DIRECTLY from RTF file?
Replies: 5
Views: 17440

Yes, TRichViewEdit writes them at the first line, So PLEASE keep this in the future, or my program will be broken all over the world! If you want to extract them yourself, please test how they are saved if strings contain non-English characters. German Umlaut and Unicode characters do work well, no...
by PeterPanino
Mon Dec 17, 2012 10:15 am
Forum: Support
Topic: Reading RTF metadata Title DIRECTLY from RTF file?
Replies: 5
Views: 17440

I need to use a FAST method because I have to fill a list with the metadata. I have seen that the metadata are always in the first line of the RTF file and start with '{\author ' and '{\title ' etc. So I now read the first line of the RTF file and parse it for these strings, which seems to work well...
by PeterPanino
Sun Dec 16, 2012 6:10 pm
Forum: Support
Topic: Reading RTF metadata Title DIRECTLY from RTF file?
Replies: 5
Views: 17440

Reading RTF metadata Title DIRECTLY from RTF file?

Hi! Is there a *FAST* method to read the metadata Title from an RTF file (previously saved with RichViewEdit TRVDocParameters.Title), without having to load the whole RTF file into a RichView object?
by PeterPanino
Sun Nov 18, 2012 1:11 am
Forum: Support
Topic: rvActionPrintPreview problem
Replies: 2
Views: 10924

SOLVED: rvActionPrintPreview problem

Solution: Do NOT link rvActionPrintPreview.ActionPageSetup to rvActionPageSetup!

It seems that only when PrintPreview creates an internal temporary Page Setup dialog, this will automatically update the Print Preview when the Page Setup dialog closes with OK.

Sergey, is this correct?