Search found 30 matches

by infrax
Thu Sep 20, 2012 5:45 am
Forum: Support
Topic: Ribbon gets deactivated on RV action
Replies: 9
Views: 25042

Yes ribbon control assumes that it is also the main form (and only 1 ribbon from in the application)

It has a fixed code:

Code: Select all

procedure TRibbonBaseButtonControl.Click;
begin
  inherited;
  SetFocus(Application.MainForm.Handle);
end;
By modifying this I got it working...... :D
by infrax
Wed Sep 19, 2012 12:08 pm
Forum: Support
Topic: Ribbon gets deactivated on RV action
Replies: 9
Views: 25042

Any ideas what to do?
by infrax
Tue Sep 18, 2012 9:09 am
Forum: Support
Topic: Ribbon gets deactivated on RV action
Replies: 9
Views: 25042

Yes but still, with that code added it still goes out of focus. Form1 gets focused. We are planning to have multiple forms (measuring units will be fixed on all forms). So all the code for converting between different units will be skipped. RVAControlPanel1 will be moved out of RVARibbonFrm (for sin...
by infrax
Thu Sep 06, 2012 7:35 am
Forum: Support
Topic: Ribbon gets deactivated on RV action
Replies: 9
Views: 25042

Ribbon gets deactivated on RV action

I used the ribbon example, added a new form and button. On button click I open the ribbon form: procedure TForm1.Button1Click(Sender: TObject); var r:TfrmMain; begin r := TfrmMain.Create(Self); r.Show; end; Now on every RV action the ribbon form gets deactivated (it activates the main form). What am...
by infrax
Wed May 30, 2012 12:18 pm
Forum: Support
Topic: BackgroundImage is not printing
Replies: 5
Views: 16514

Yes, that was it.

Thanks.
by infrax
Wed May 30, 2012 11:01 am
Forum: Support
Topic: BackgroundImage is not printing
Replies: 5
Views: 16514

RichViewAlternativePicPrint was False, but also with True it's the same.

Is there any difference between TRVPrint and TRVReportHelper? If the same document is printed with demo ActionTestRibbon (uses TRVPrint) it is OK.
by infrax
Wed May 30, 2012 8:49 am
Forum: Support
Topic: BackgroundImage is not printing
Replies: 5
Views: 16514

An update to this.

So we have a table with a background image (as stretch-eh). I'm printing on a physical printer. If the image is BMP it prints OK, if JPG or PNG it's not OK.

Printing on a local PDF printer -> it's always OK.

Any ideas?
by infrax
Mon May 21, 2012 8:57 am
Forum: Support
Topic: BackgroundImage is not printing
Replies: 5
Views: 16514

BackgroundImage is not printing

I'm trying to print a document with a background image in it (or document with one big table (to fit A4) with background image). I'm using ReportHelper to print&draw RV to printer canvas. Position of this image is set to stretched. If I print it to local (file) printer (bullzip, xps document pri...
by infrax
Wed Apr 18, 2012 11:45 am
Forum: Support
Topic: Which rows are printed on a specific page
Replies: 14
Views: 31946

It's working :D .

Thanks
by infrax
Tue Apr 10, 2012 1:43 pm
Forum: Support
Topic: Which rows are printed on a specific page
Replies: 14
Views: 31946

OK, great.

When can we expect this next update, approximately?
by infrax
Tue Apr 03, 2012 9:09 am
Forum: Support
Topic: Which rows are printed on a specific page
Replies: 14
Views: 31946

True, but I want to do this with tables. So the requirements are: - have the table header row at every page (can be more than 1 row) - user shouldn't notice when one part ended and the other started (could be a problem if a table/cell has a border) - have the table footer row only at the last page (...
by infrax
Tue Apr 03, 2012 6:05 am
Forum: Support
Topic: Which rows are printed on a specific page
Replies: 14
Views: 31946

Usually yes, but maybe in this case we could leave it out. I think the only solution for this is to go over the whole PDF file again and print header/footer with page count (if the header/footer height is the same). Any other way? OK in parts then. And back to my first question. Usually in this bit ...
by infrax
Mon Apr 02, 2012 9:30 am
Forum: Support
Topic: Which rows are printed on a specific page
Replies: 14
Views: 31946

What would you recommend? What is the best/right way to generate large reports, using RV? Generating PDF (the component for this) is not a problem. I tired to create 1GB dummy file and it was OK. In any case, if we're building report in parts, the problems are page numbers. You don't know the total ...
by infrax
Mon Apr 02, 2012 7:51 am
Forum: Support
Topic: Which rows are printed on a specific page
Replies: 14
Views: 31946

It goes while I'm building XML document (with RichViewXML).

I haven't tried building that big document directly in RV ...
by infrax
Thu Mar 29, 2012 11:20 am
Forum: Support
Topic: Which rows are printed on a specific page
Replies: 14
Views: 31946

Well the problem is that we want to print a very big RV (xml generated) file into PDF. Usually it is just one very big table. We are talking 10000 PDF pages and more ... For 'small' dataset it is working OK (up to 100000 rows), but after that it goes out of memory. So I was thinking to generate and ...