Search found 39 matches

by Crowbar
Fri May 11, 2007 11:19 am
Forum: Support
Topic: The last 2 days to order with free lifetime updates [closed]
Replies: 3
Views: 11509

Hi Sergey,
where i can upgrade my TRichView - License (web-Link?) and how much is it?
I'm registered user already.

Regards
by Crowbar
Thu Dec 21, 2006 4:37 pm
Forum: Support
Topic: Saving text-style information in RTF files (OnSaveRTFExtra)?
Replies: 1
Views: 8868

Saving text-style information in RTF files (OnSaveRTFExtra)?

Hi, i saving additional information in RTF files with the OnSaveRTFExtra event. I save my footer with following code: Procedure TForm.MainRichViewEditSaveRTFExtra(Sender: TCustomRichView; Area: TRVRTFSaveArea; Obj: TObject; Index1, Index2: Integer; InStyleSheet: Boolean; var RTFCode: string); Var st...
by Crowbar
Sat Dec 16, 2006 8:43 pm
Forum: Support
Topic: Table save in rtf-Format...
Replies: 1
Views: 8813

Table save in rtf-Format...

Hi, i have following problem: 1. load rtf-File with table in the RichViewEdit 2. change the border-width of table from 1 (or higher) to 0 (no border) 3. save the rtf-File 4. load rtf-File again and i would like the border-width to change from 0 (no border) to 1 (or higher) But after save and again l...
by Crowbar
Sun Dec 10, 2006 1:07 pm
Forum: Support
Topic: Loading RichView with Footer?
Replies: 5
Views: 16113

Hi,
is planned in the future of version, that the function "PVPrintPreview.RVPrint.SavePageAsRVF" save all ... with the "Footer" (and "Header") too?

Regards
Crowbar
by Crowbar
Thu Dec 07, 2006 2:10 pm
Forum: Support
Topic: Loading RichView with Footer?
Replies: 5
Views: 16113

Hi,
my footer is a formated document (in RVF format).

Code: Select all

RVPrint1.SetFooter(FootRichViewEdit.RVData);
by Crowbar
Thu Dec 07, 2006 9:31 am
Forum: Support
Topic: Loading RichView with Footer?
Replies: 5
Views: 16113

Loading RichView with Footer?

Hi, i would like to loading the content of Printpreview (with Footer) in the RichView. That's ok, but why will be loading the Richview without Footer? It is possibly the total content of Printpreview (with Footer) to loading in the RichView? ... Var ms : TMemoryStream; begin ms:=TMemoryStream.Create...
by Crowbar
Wed Dec 06, 2006 6:08 pm
Forum: Support
Topic: Experience with TRichViewPDF ?
Replies: 2
Views: 11357

Thanks for your help!

Now, it works correctly! :D

Crowbar
by Crowbar
Tue Dec 05, 2006 5:05 pm
Forum: Support
Topic: Experience with TRichViewPDF ?
Replies: 2
Views: 11357

Experience with TRichViewPDF ?

Hi, i would like to produce a pdf-File from the content of RichViewEdit. I use the TRichViewPDF - component for it of www.roledata.com . Unfortunately, one cannot export RichViewEdit after PDF. :( Well, i load the content of the TRichViewEdit in the TRichView (see Code). ... RichViewPDF:=TRichViewPD...
by Crowbar
Mon Nov 20, 2006 9:46 am
Forum: Support
Topic: RichViewEdit - margin - printout
Replies: 2
Views: 10917

Hi Sergey,
thanks for your informations.
I will waiting to the next update. :P

Crowbar
by Crowbar
Fri Nov 17, 2006 2:07 pm
Forum: Support
Topic: RichViewEdit - margin - printout
Replies: 2
Views: 10917

RichViewEdit - margin - printout

Hi, I use the paper format A4 (210 mm x 297 mm). In my RichViewEdit i to fix the left- and right margin at 20mm: ... function MMToPixels(mm: Integer): Integer; var ppi: Integer; begin ppi:=RichViewPixelsPerInch; if ppi = 0 then ppi:=Screen.PixelsPerInch; Result:=Round(mm * 5 * ppi / 127); end; ... R...
by Crowbar
Sun Nov 12, 2006 5:30 pm
Forum: Support
Topic: RichViewEdit.GetTextLen always "0"
Replies: 1
Views: 9342

RichViewEdit.GetTextLen always "0"

Hi, the Standard-RichEdit is ok! The result is to example "20". MaxLen:=RichEdit.GetTextLen; With RichViewEdit is the result always "0". MaxLen:=RichViewEdit.GetTextLen; How can I get length of the total text in the RichViewEdit? Another question: Why do I get "0" forev...
by Crowbar
Sun Nov 12, 2006 1:46 pm
Forum: Support
Topic: How do I place the cursor on a defined position?
Replies: 4
Views: 14759

Call RichViewEdit.Reformat
Thanks, that is the solution! :)

Crowbar
by Crowbar
Sun Nov 12, 2006 10:38 am
Forum: Support
Topic: How do I place the cursor on a defined position?
Replies: 4
Views: 14759

I would like show and not show the SpecialCharacters: RichViewEdit.Options:=RichViewEdit.Options-[rvoShowSpecialCharacters]; or RichViewEdit.Options:=RichViewEdit.Options+[rvoShowSpecialCharacters]; The user can change this setting. However, "Format" must be called after it. (?) If I call ...
by Crowbar
Sat Nov 11, 2006 7:02 pm
Forum: Support
Topic: How do I place the cursor on a defined position?
Replies: 4
Views: 14759

How do I place the cursor on a defined position?

Hi, with "RichViewEdit.GetCurrentLineCol(l,c)" safe I me the position of the cursor. After calls from "RichViewEdit.Format" the cursor is on top. After the "RichViewEdit.Format" command, the cursor should at the before saved position back. So similarly: ... RichViewEdit...
by Crowbar
Sun Nov 05, 2006 5:44 pm
Forum: Support
Topic: tabs lists
Replies: 1
Views: 8774

tabs lists

Hi,
how I can list all tabs (-postions) into my RichViewEdit (example list in a TListBox).

I have in my RichViewEdit the TRVRuler to set my tabs.

Crowbar