rbuser
Comments
-
Wow! A reply in 3 minutes!! Thank you so much!
Kevin
-
Hello Nico,
The following is in my OnCalcFields event:
if DetailTable1.Active then begin
DetailTable1.Locate('DocNo' ,
MasterTable.FieldByname('DocNumber').AsString,[]);
DetailTable2.Locate('DocNo',
Ma… -
I cache pages so I think it should work even when going back and forth. I
tested it and it seems to have numbered it correctly each time so I'll stick
with the OnePass for now
-
I discovered that it had changed the PassSetting to psTwoPass...I changed it
back to psOnePass, so works faster now - although I did read, in the Help or
here, that when using page numbering, its better to use twopass - would that
be … -
Thank you so much.
-
never mind. my bad.
"Kumar Manuel" wrote in message
news:40b3f6e0$1@dm500....
-
"Nico Cizik (Digital Metaphors)" wrote in
-
Well... Sorry to use this forum as a public monologue, but I was able to fix
my problem...
Apparently the report's beforePrint event is not a good place to open
datasets referenced by subreport pipelines. I moved the opening/clo… -
And, something in common between the two failing reports... in the
beforePrint event I open the dataset linked to the subreport's pipeline.
Is there a problem opening a dataset linked to a pipeline in the report's
beforePrint ev… -
Another curiosity... the subreport with the embedded subreport... if in the
beforePrint event I free the embedded subreport the report prints fine...
-
Not sure this will help debug, but curious...
When preview comes up I get "Page 1 of 2" in bottom left of preview window.
Try to print hardcopy and get flashing between 0 and -1.
Click on next/prev page in toolbar and page chang… -
I placed breakpoints at the start of all event handlers... Each event is
called in order for both preview and print, until the first var calc... The
var calc is never reached and I begin getting the infinite pages...
Another odd… -
I'm using RB 7.02, D6 with update pack 2.
It will be difficult to send you an example program... Report templates are
pulled from an SQL Server db, the report has 6 subreports, 5 of which get
freed depending on user selections. … -
Do you have the QueryWizardviaCode demo working with ASTA components??
Regards
-
I suppose that many user already have their own customized QueryWizards
or QueryDesigners.
I think they should share it, once it?s a benefit not only for me, but
to everyone.
Also, as we have third-p… -
Well that was easy enough... Many thanks!
If I want to grab two field values at once, I imagine the easiest way may
be to create a calculated field (i.e. a compound of both individual
fields) and then parse out the value behin… -
Nico,
Thanks for the demo project.
Regards
Charles
-
Nico,
need
I have a DM.TblAlbums['prefered'].AsString = 'yes' then
I change the font.
The problem is that the font style is change for all the records in the
table, I just want the records marked as Prefered = 'Y… -
Nico
I have spent 3 hours trying to debug this and I have tried all of your
suggestion prior to you suggesting them and am still at a loss. The
Template.FileName is getting changed correctly and ProcessTemplate does not
res… -
Hi Nico.
I let the client set the default printer using the File/Page Setup menu item
in the designer. I do not by added code change anything in the template.
Until XP this procedure has worked just fine so long as the share na… -
procedure TForm2.ppReport1PrintDialogClose(Sender: TObject);
begin
ppReport1.PrinterSetup.PrinterName :=
Printer.Printers[Printer.PrinterIndex];
end;
Solved my own problem. Here is the solution in case someone els… -
Hmm. Not in my help file. thanks so much.
Dayna.
-
Call ppReport1.Cancel.
Ed Dressel
Team DM
-
> I have a customer list with over 6.000 customers. When I display them in a
On large reports, I have (1) moved to an in-memory dataset or (2) moved to
JIT pipeline controls.
And the later can be much quicker then the f… -
Doug wrote:
send me an mail and YOu'll get free component for that-TReportExchange...
-
Nico,
Are you aware of an existing plugin for Core Labs SDAC (MS SQL Data Access
Components)? If not, could you please direct me to documentation that will
show me how to create one?
Thanks again for all your help,I've narrowed things down to what is causing the problem.
Basically, it boils down to the fact that I'm performing a search and
replace on the SQL data in the report before executing it, because there are
some parameters I need …Thanks Nico.
From the Microsoft SQL Profiler, I've determined that the SQL statement is
being executed when the call to Report.Template.SaveToDatabase is being made
(we load the report and save it into the datatabase as a BLOB t…Nico,
Thanks. The templates were created using version 7.03. I've verified that
the SQL is definitely being executed with the SQL Profiler (I'm using MS SQL
Server). I can't simply move the LoadFromFile call to a plcace just …FYI, I'm using ReportBuilder 7.03
Thanks,
Doug