Search found 30 matches

by pgkammath
Sun Feb 23, 2020 5:22 am
Forum: ScaleRichView
Topic: ScaleRichview Page Number
Replies: 2
Views: 34618

ScaleRichview Page Number

The SRichViewEdit is generating the Page number by setting the PageProperty PageNoVisible to True (Default). I want to print the number as 1/5, 2/5,..... like that. I looked at the examples here , Trichview\TRichView\Demos\Delphi\Assorted\Printing\Printing The OnpagePrepaint is seen from RvPrint but...
by pgkammath
Thu Feb 20, 2020 3:24 am
Forum: Support
Topic: ScaleRichView Formatting Problem
Replies: 4
Views: 19578

Re: ScaleRichView Formatting Problem

Thanks Sergey.

I made the mistake as you have mentioned.
Assuming that formatting (text and paragraph styles) from RVStyle1 will be used when I call AddTextNL. Also, about
formatting from 'MASTER HEALTH CHECK-UP.rvf'.

Now everthing is fine.

Thanks once again for the explanation

Regards,
by pgkammath
Wed Feb 19, 2020 9:52 am
Forum: Support
Topic: ScaleRichView Formatting Problem
Replies: 4
Views: 19578

Re: ScaleRichView Formatting Problem

Thanks Sergey, I think , I figured out from where the issue came. This line. FinalData.RichViewEdit.LoadRVF('C:\BMH-CURRENT\CCP\MASTER HEALTH CHECK-UP.rvf'); I am loading the RVF file. Here I am replacing the Tags with the values. When I blocked this loading and replace process, The formatting is ba...
by pgkammath
Wed Feb 19, 2020 4:36 am
Forum: Support
Topic: ScaleRichView Formatting Problem
Replies: 4
Views: 19578

ScaleRichView Formatting Problem

The following is the simple piece of code i am having trouble with. Its simply print out line by line from a data source Finaldata is the scalerichview component My issue is that , the changes made to RvsHeading, RvsSubHeading etc in Rvstyle is not reflected in the report. Also, I find that the appl...
by pgkammath
Sat Sep 14, 2019 2:34 pm
Forum: Support
Topic: Word Insert at Cursor
Replies: 2
Views: 15137

Re: Word Insert at Cursor

Thanks Sergey. Got it. Was bit lazy there. Modified the fuction GetColoredTextStyleNo got the result. function GetColoredTextStyleNo(rve: TCustomRichViewEdit; Color: TColor;FontStyle:TFontStyles): Integer; var TextStyle: TFontInfo; begin TextStyle := TFontInfo.Create(nil); TextStyle.Assign(rve.Style...
by pgkammath
Sat Sep 14, 2019 11:59 am
Forum: Support
Topic: Word Insert at Cursor
Replies: 2
Views: 15137

Word Insert at Cursor

Hi, I have a User Interface, where there is a SRichViewEdit and a StringGrid with a single column. When the user double clicks on an item in stringgird, the data in the column gets populated in the SRichViewEdit. The thing is , how to insert this word from stringgrid at the Cursor, How to to set the...
by pgkammath
Mon Mar 18, 2019 3:39 pm
Forum: Support
Topic: Watermarking
Replies: 4
Views: 16392

Re: Watermarking

Thanks Sergy. I will try it out.

Regards
Prabhakar G Kammath
by pgkammath
Mon Mar 18, 2019 10:16 am
Forum: Support
Topic: Watermarking
Replies: 4
Views: 16392

Re: Watermarking

Hi Sergey,
Thanks for the quick response. It will be enough if I can show this a an image, But can we remove that image once it is not required ?. I am also trying this out using printer drivers for PDF creation.

Regards,
Prabhakar G Kammath
by pgkammath
Mon Mar 18, 2019 5:13 am
Forum: Support
Topic: Watermarking
Replies: 4
Views: 16392

Watermarking

Hi,
I want to put a water mark in a report to the effect that 'Provisional Report', 'Interim Report' etc. and then remove this water mark when the report is made final. Is there any way, to implement this. Kindly help. Thanks in advance.


Prabhakar G Kammath
by pgkammath
Sun Nov 25, 2018 12:42 pm
Forum: ScaleRichView
Topic: Appending from a RVF into ScaleRichView
Replies: 1
Views: 20609

Appending from a RVF into ScaleRichView

Hi, I could not find an answer in the forum, hence the question. Pardon me if this is silly, since I am short on time for the project. I want to append an RVF file at the end of my current ScalerichView file, (I modified the the Actiontest from the demo from scalerichview) . I use the following code...
by pgkammath
Tue Nov 20, 2018 9:13 am
Forum: Support
Topic: Capitalize first letter of a sentence
Replies: 4
Views: 18272

Re: Capitalize first letter of a sentence

Thanks for the help. I will implement and revert.
by pgkammath
Wed Nov 14, 2018 6:48 am
Forum: Support
Topic: Capitalize first letter of a sentence
Replies: 4
Views: 18272

Re: Capitalize first letter of a sentence

Hi sergey,
Sorry, i forgot to mention the Delphi version. I want this to be done in Delphi-7 actually. So is there a way for that.

Regards,
by pgkammath
Thu Nov 08, 2018 9:21 am
Forum: Support
Topic: Capitalize first letter of a sentence
Replies: 4
Views: 18272

Capitalize first letter of a sentence

Is there a way to automatically capitalize the first letter of a sentence as we go on typing. ie. the first letter after the full stop and space.
thanks in advance
by pgkammath
Fri Oct 26, 2018 9:32 am
Forum: Support
Topic: Identify RTF or RVF
Replies: 2
Views: 11259

Re: Identify RTF or RVF

Thanks, Sergy for the prompt reply. Problem solved.
by pgkammath
Fri Oct 26, 2018 4:02 am
Forum: Support
Topic: Identify RTF or RVF
Replies: 2
Views: 11259

Identify RTF or RVF

Earlier, I used to save RTF data as blob in SQL server 2014, now i have moved to RVF format for better control. On loading, is there a way to know, whether the data saved is RVF or RTF, so that we can set the viewer accordingly. I use the following procedure to load the data into TRichviewEdit. Cert...