rbuser
Comments
-
Hi Nard,
Is there any feedback regarding this issue? We unfortunately deployed a
Windows 2016 Server about a month ago and have been struggling with the
default printer issue ever since.
I look forward to hearing fr… -
Nard Moseley (Digital Metaphors) wrote:
Hi Nard,
Thanks for the reply. I'm afraid that's not the problem. Tested with the
following code (Delphi Berlin):
function GetDefaultPrinter(Buffer: PChar; var Buff… -
Hi all,
Ok, just to put a follow-up here on the group, Nard explained to me my
rookieness.
One has to put a TppReport on the form, then it'll work as expected.
As Nard explained to me:
"The datapipel… -
Yes, it was a glitch in previous Delphi installation. After
re-installing Delphi all worked ok.
Thanks.
-
Nico Cizik (Digital Metaphors) wrote:
Thank you for the answer, Nick.However when I try to install Demo I get
this message:
Delphi 10.1 Berlin has not been detected on this machine. Please
install Delphi 10.1 Be… -
On 2/13/17 10:15 AM, Nico Cizik (Digital Metaphors) wrote:
Thank you Nico, I just sent you the sample project.
Thank you for your support.
Regards,
Mario
-
Thank you Nico,
I currently using RB 18.0 Ent and Berlin Professional.
I try your advice, but it only shows the value from the last detail line.
Here's the code I'm using:
procedure varTotalCategoria… -
Nico Cizik (Digital Metaphors) wrote:
Thanks, Nico. You are always so helpful. I appreciate it.
--
-
Hi Nico,
Problem was found, caused by a hardcast.
Solution was using a softcast.
Thank you for the hint with TppTemplate.OnConvert, I will test it.
Thx
Carsten
Nico Cizik (Digital Metaphors) legt… -
Exception occurs on
*********
for li := 0 to aReport.GroupCount - 1 do
begin ....
*****
where aReport originates from
if lbConvert then
begin
Convert(FVersionNo);
//Patch… -
Hi Nico,
Thank you for your reply.
ATT I always go to the Preview, hence seeing no report. I think this is disconcerting or end users, to see a blank
page however, as a start, I like the idea of then showing a message that no… -
Hi Nico,
I'm using RB 17.01 build 65 on Delphi XE7. The very same report has been
working fine yesterday, according to the customer and the latest change
was 4 weeks ago.
I had removed pretty much everything but the… -
Hi Nico,
You are right about that but I do not have control over user Templates.
The interesting part is if I force IsStandardWebFont :=true for any font I
get what I want.
Can we make that an option in the future or is there a … -
Hi Nico,
If I understood correctly, I can't do this purely from within the report
template itself, and it needs some coding to be done within the calling
application anyway?
So - that's what I've donein Suppressing Print based upon SubReport row count Comment by rbuser March 2017
-
Hi Nico,
Thanks as always for the prompt response.
I would like to try option 2 first (cancelling the print from within the
Report itself), as this will keep the report generation process within
the application comm… -
Nevermind. I figured out the installation problem. I will report back on the
status of my issue if this updated version fixes the problem.
-
I uninstalled ReportBuilder 10.02 and tried to install RB 18.01. It
installs fine but when Delphi 7 launches i get this error:
"Can't load package C:\Program Files
(x86)\Borland\Delphi7\RBuilder\Lib\dclRB187.bpl. A class name… -
I am using Delphi 7 Enterprise and Report Builder Enterprise Edition 10.02.
I am using Advantage Database 12 and their native VCL tools.
The original report was having problems with the duplicate line so i
searched this n… -
More Info:
If i set the Report.DeviceType to 'Screen' so i can preview the report
here's what happens.
1.) I run the report and it Previews a 2 page report. When i look at the
last line item on page 1 everything loo… -
Adding More Information:
The Details part of my report is a SubReport and the 'Details' section of
the SubReport is inside a Region.
So the last line item on page 1 inside the Region is printing again as the
first l… -
HI Nico,
It was easier than I thought. :-)
RBTest.rar sent to support@..
See comment in Appointments source.
Regards,
Ian
-
Hi Nico,
Ahh now that will be a challenge. The two forms are part of a 20+ form application.
I will see what I can do.
Regards,
Ian
-
Not a solution - A work around..
{code}
with ReportsFrm.ReportsForm do
begin
ppRE1.LoadReport('Appointments', 2);
ppR1.Icon.LoadFromFile('DBWorkflow.ico');
ppR1.ShowAutoSearchDialog := False;
… -
Tried this..
{code}
ApptTemp.Close;
//
with ReportsFrm.ReportsForm do
begin
ppRE1.LoadReport('Appointments', 2);
ppR1.Icon.LoadFromFile('DBWorkflow.ico');
ppR1.ShowAutoSearchDialog := False… -
Hi Nico,
Thank you for your response. Forgot to mention but you probably guessed, I am using Advantage Database. v 12.
I tried both suggestions.
Changing the setting PreviewFormSettings.SinglePageOnly to True did noth… -
Nico Cizik (Digital Metaphors) wrote:
Niko,
not sure, if I get this right. I have a client app running with FMX on
a Mac. My app has to communicate with RB server (with FMX support) via
REST to print the reports… -
On 5/10/17 8:16 AM, Nico Cizik (Digital Metaphors) wrote:
Thank you Nico, that did the trick!
And one last question...
It is possible to automatically attach the report in the Send Email
Dialog? I would like to… -
Hi Nico,
I followed the instructions in the source file and it worked for the
most part, except it left the email in the draft folder instead on
sending it right away.
Do you know what could be causing this behavior… -
Thank you Nick, that would do.
Regards,
Mario Enriquez
-
I found the best way to have full control over what's going on in the
Print Preview form is to register a custom TppPreview for it:
type
TnxPreviewPlugin = class(TppPreview)
protected
procedure PrintS…