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?
Search found 26 matches
- Sun Apr 15, 2018 2:34 pm
- Forum: Support
- Topic: Fastest way to search for text in RVF files?
- Replies: 1
- Views: 10750
- Fri Dec 29, 2017 2:08 pm
- Forum: Support
- Topic: VerticalScrollbarVisibleOnlyWhenNecessary?
- Replies: 1
- Views: 10382
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?
Is it possible to have the vertical scroll-bar appear only when necessary, i.e. when the text-height > client-height?
- Thu Dec 28, 2017 1:17 pm
- Forum: Support
- Topic: How to get current Font.Name?
- Replies: 2
- Views: 13830
Re: How to get current Font.Name?
Thank you - this works very well!
- Wed Dec 27, 2017 11:11 pm
- Forum: Support
- Topic: How to get current Font.Name?
- Replies: 2
- Views: 13830
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.
How can I get the Font.Name at the caret?
I would like to show the current font name in the status bar.
- Sun Jun 01, 2014 6:07 pm
- Forum: Support
- Topic: Strange: Shortcuts don't work inside table
- Replies: 2
- Views: 13206
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.
- Fri May 30, 2014 10:41 pm
- Forum: Support
- Topic: Strange: Shortcuts don't work inside table
- Replies: 2
- Views: 13206
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.
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.
- Fri May 30, 2014 10:10 pm
- Forum: Support
- Topic: rvActionInsertTable: How to preset vertical Middle alignment
- Replies: 3
- Views: 15981
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;
- Fri May 30, 2014 9:25 pm
- Forum: Support
- Topic: rvActionInsertTable: How to preset vertical Middle alignment
- Replies: 3
- Views: 15981
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
r v A c t i o n I n s e r t T a b l e
- Fri May 30, 2014 9:20 pm
- Forum: Support
- Topic: rvActionInsertTable: How to preset vertical Middle alignment
- Replies: 3
- Views: 15981
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
RichView 13.6.3
Delphi XE2
Windows 7 x64 SP1
- Sat Feb 22, 2014 3:30 pm
- Forum: Support
- Topic: Pasting a webpage selection like in MS Word?
- Replies: 0
- Views: 16147
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 ...
- Sat Jan 25, 2014 1:53 am
- Forum: Support
- Topic: Convert HTML Format on the clipboard to a picture?
- Replies: 1
- Views: 10180
Convert HTML Format on the clipboard to a picture?
Hi! I have a "HTML Format" layer on the clipboard:
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).
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).
- Thu Dec 20, 2012 11:43 pm
- Forum: Support
- Topic: Reading RTF metadata Title DIRECTLY from RTF file?
- Replies: 5
- Views: 19768
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 ...
- Mon Dec 17, 2012 10:15 am
- Forum: Support
- Topic: Reading RTF metadata Title DIRECTLY from RTF file?
- Replies: 5
- Views: 19768
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 ...
- Sun Dec 16, 2012 6:10 pm
- Forum: Support
- Topic: Reading RTF metadata Title DIRECTLY from RTF file?
- Replies: 5
- Views: 19768
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?
- Sun Nov 18, 2012 1:11 am
- Forum: Support
- Topic: rvActionPrintPreview problem
- Replies: 2
- Views: 12093
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?
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?