Search found 8 matches

by bglboss
Wed Mar 18, 2015 10:42 pm
Forum: Support
Topic: Printed bold rtf text is colored blue
Replies: 5
Views: 22045

Printint italic as red

I've also had the problem of italic printing red and came across this post. I wasn't sure how to fix it however so I thought I might post what worked for me here. Your reply simply stated what the most likely situation was (RichView.RTFReadProperties.TextStyleMode = rvrsUseClosest). I checked this a...
by bglboss
Wed Dec 12, 2007 5:18 am
Forum: Support
Topic: Problem printing lines in cells
Replies: 0
Views: 11260

Problem printing lines in cells

Sergey I have a problem printing some in table cells. I have a financial report. I am printing a line before and after the total amounts. The line after the total does not always print. It does show in the richedit. I am using quick reports. One other thing: The document as a set of Notes to the fin...
by bglboss
Sat Sep 08, 2007 6:09 am
Forum: Support
Topic: Cell Borders
Replies: 3
Views: 12038

Thanks Sergey
by bglboss
Thu Sep 06, 2007 10:25 am
Forum: Support
Topic: Cell Borders
Replies: 3
Views: 12038

Keeping tables together

Sergey

In a similar vein, is there any way I can tell Richview to keep a table together so it will not split a table at a page break ?
by bglboss
Thu Sep 06, 2007 3:03 am
Forum: Support
Topic: Cell Borders
Replies: 3
Views: 12038

Cell Borders

Sergey

I want to make the border visible on the top of a cell and the bottom of a cell but not the sides of the cell:

ie
_____________
123456
_____________

I also want the top border and the bottom border to be different widths ie top width 1 and bottom width 2.

Is this possible ?
by bglboss
Mon Aug 20, 2007 9:38 pm
Forum: Support
Topic: Changing the fontname of text in a document
Replies: 4
Views: 13639

Thanks Sergey , now works beautifully
by bglboss
Mon Aug 20, 2007 1:11 pm
Forum: Support
Topic: Changing the fontname of text in a document
Replies: 4
Views: 13639

Sergey Thanks for your prompt reply but this did not seem to fix the problem My code as it stands now: VRichView := TRichView.Create( nil ); VStyles := TRVStyle.Create( nil ); VRichView.Visible := False; VRichView.Parent := Form6; VRichView.Style := VStyles; VRichView.RVFParaStylesReadMode := rvf_sI...
by bglboss
Mon Aug 20, 2007 5:38 am
Forum: Support
Topic: Changing the fontname of text in a document
Replies: 4
Views: 13639

Changing the fontname of text in a document

Hello This should be simple but seems to be so difficult. I have a document in a stream. I load the document into a TRichview VRichView := TRichView.Create( nil ); VStyles := TRVStyle.Create( nil ); VRichView.Style := VStyles; VRichView.RVFParaStylesReadMode := {rvf_sIgnore;//}rvf_sInsertMerge; VRic...