Search found 38 matches

by Alexander_Dober
Wed Jan 20, 2016 9:44 am
Forum: Support
Topic: Missing RV content in PDF export of a RB report
Replies: 5
Views: 19515

Thanks Sergey, some more info: they moved { .$DEFINE RICHVIEW } to [eDocEngine Installation folder]\Source\gtExpIntf.inc file and according to a note in that file, it's not supposed to be changed manually, unless one is installing the interfaces manually. I wasn't doing that, so didn't change anythi...
by Alexander_Dober
Tue Jan 19, 2016 5:58 pm
Forum: Support
Topic: Missing RV content in PDF export of a RB report
Replies: 5
Views: 19515

No, should I? In their changelog I haven't read anything regarding any RV related changes, but in your changelog some eDocEngine related changes have been mentioned regarding EMF stuff etc., so that I've assumed the issue is probably RV related or that you have been in contact with them regarding th...
by Alexander_Dober
Tue Jan 19, 2016 3:45 pm
Forum: Support
Topic: Missing RV content in PDF export of a RB report
Replies: 5
Views: 19515

A small addition:
if I do export to PDF with the built-in RB functionality, the RV content is visible either, so it's just the combination or RV (RB wrapper) + eDocEngine, that seems not to work.
by Alexander_Dober
Fri Jan 15, 2016 10:18 am
Forum: Support
Topic: Missing RV content in PDF export of a RB report
Replies: 5
Views: 19515

Missing RV content in PDF export of a RB report

Hello, I'm testing the current RV version and have also installed the following: DevExpress 14.2.2 RB 17 RV cxEditor add-on 1.5.5 RV RBuilder add-on 1.19 eDocEngine 5.0.0.15 When I export a cxGrid or a RB report to PDF via eDocEngine export interface, the RichView content is missing in the resulting...
by Alexander_Dober
Fri Jan 15, 2016 9:06 am
Forum: Support
Topic: Programmatically changing font and font size.
Replies: 11
Views: 46884

This part of the announcement thread did sound to me, as if it doesn't matter which property is being set: The old Size property (size in points) still exists. Assigning value to one property changes value of another property. Changed it to "FontSizeDouble" now and it works again, thanks f...
by Alexander_Dober
Thu Jan 14, 2016 2:22 pm
Forum: Support
Topic: Programmatically changing font and font size.
Replies: 11
Views: 46884

Hello, has anything changed in the way of changing font and font size programmatically? I'm trying the current RV version and my application seems to be "broken" partly. I'm creating the rvActions and the controls for the ToolBar at run-time: myRVActionFont: TrvActionFontEx; myRVActionFont...
by Alexander_Dober
Mon Dec 07, 2015 6:18 pm
Forum: Announcements
Topic: Wrapper v1.16.2 for ReportBuilder 9-15
Replies: 5
Views: 36195

Would this wrapper verison work with RB 17 or do you plan to make a new version?
by Alexander_Dober
Tue Feb 24, 2015 1:06 pm
Forum: Announcements
Topic: Data editors for DevExpress VCL v1.5
Replies: 4
Views: 34913

Hello, according to the readme file the current version is 1.5.5, which requires TRichView 14.1 and which has been tested with DevExpress VCL 14.2.4 (v2014 vol 2.3 - 05 Feb 2015). Does it mean that it works only with this DevExpress version or up to it? Trying to install the addon with 14.2.2 and th...
by Alexander_Dober
Tue Dec 16, 2014 5:13 pm
Forum: Support
Topic: Executing TrvActionFontColor closes the parent PopupEdit
Replies: 1
Views: 10065

Executing TrvActionFontColor closes the parent PopupEdit

Hello, I'm using RichViewEdits + toolbars with some RichViewActions on them in two different ways: 1. On a normal form, which is being showed modal 2. On a form, which gets assigned to a cxGrid column as its PopupEdit In the second case there is a problem, that once I execute the ToolButton with Trv...
by Alexander_Dober
Thu Nov 29, 2012 3:48 pm
Forum: Support
Topic: RTF blob field to RVF blob field
Replies: 5
Views: 18311

Wow, what a difference.
Thank you Sergey, that was the reason. I wasn't aware that a RVStyle has 6 TextStyles and 2 ParaStyles after creation.

Is it necessary to add a style straight after clearing? Won't one get added because of "xxxStyleMode = rvrsAddIfNeeded"?
by Alexander_Dober
Thu Nov 29, 2012 11:32 am
Forum: Support
Topic: RichViewEdit without visual component
Replies: 5
Views: 17266

Hello,

I think you can use TRVReportHelper for that. There should be some threads about it here.
by Alexander_Dober
Thu Nov 29, 2012 11:31 am
Forum: Support
Topic: RTF blob field to RVF blob field
Replies: 5
Views: 18311

Thanks Sergey, that worked fine, but there is another problem now: the size of the content. A given text saved as RTF in a BLOB SUB_TYPE 1 field (ISO8859_1 character set) has the size of 173 bytes. After the conversion described in the first post the same text saved in RVF format in a BLOB SUB_TYPE ...
by Alexander_Dober
Sun Nov 18, 2012 11:00 am
Forum: Support
Topic: RTF blob field to RVF blob field
Replies: 5
Views: 18311

RTF blob field to RVF blob field

Hello, I need to convert the content of some BLOB SUB_TYPE 1 fields with RTF content to RVF and save it in BLOB SUB_TYPE 0 fields. If possible without using a form with RichViewEdit(s). I believe there was a thread about a similar question, but it's not accessable anymore, so I would like to ask her...
by Alexander_Dober
Thu Feb 16, 2012 4:51 pm
Forum: Support
Topic: Error inserting PNG images
Replies: 4
Views: 15871

Hello,

are you registering TPngImage already?
uses ..., PngImage, ...

initialization

RegisterClass(TPngImage);
RV_RegisterHTMLGraphicFormat(TPngImage);
RV_RegisterPngGraphic(TPngImage);

finalization

UnRegisterClass(TPngImage);
by Alexander_Dober
Thu Dec 08, 2011 5:59 pm
Forum: Examples, Demos
Topic: [How to] How to use PNG and GIF images in TRichView
Replies: 17
Views: 191310

Ok, that way it works.

Do I need to call anything to unregister?
RV_UnRegisterHTMLGraphicFormat(TPngImage);
RV_UnRegisterPngGraphic(TPngImage);
or so?