digitalmetaphors
Comments
-
I should say, that normally, a form or datamodule is the datapipeline's
owner.
Cheers,
Jim Bennett
Digital Metaphors
-
The datapipelines just need to be reassigned to the report and subreports.
Rb will search all of the forms and datmodules inthe application, looking
for data pipelines by name.
When you save a report, it saves a string property … -
Upgrade to 6.03. There was a bug like this in 6.01. Also, if they don't
have a default printer installed on their machine, they may get this error.
If they don't have a default printer installed, then you can set
Report.PrinterSetup… -
Sorry, I forgot to point you towards a good readme.doc in your installed
..\RBuilder\Languages directory.
Cheers,
Jim Bennett
Digital Metaphors
-
If you have a set of reports in one language, then you may want to create a
copy of all of them and manually set all of the static text controls in the
reports to the Polish strings.
The Polish characters should get displayed if… -
If it is a simple static height detail band report, then you can use this
demo:
http://www.digital-metaphors.com/tips/LastLine.zip
Otherwise, you wa… -
The best appraoch we have come up with is creating a base report for the
header. Then use a subreport in all of your reports' headerbands. Now, you
can dynamically load the standard header report for your reports. There is
a demo of … -
Sorry, you cannot mix Report templates and Form Inheritance.
Cheers,
Jim Bennett
Digital Metaphors
-
You'll have to replace our rich text control with anothe 3rd party rich text
component, as shown in your installed ..\RBuilder\Infopower directory.
----------------------------------------------
Article: ReportBuilder's RichText… -
We haven't found a solution to this problem, yet. Thankyou, for your
patience.
Cheers,
Jim Bennett
Digital Metaphors
-
If Memo.CharWrap is set to true, then this would certainly cause it. Try
toggling it? If that isn't the case, then could you send us the text in the
same format as it comes from the datapipeline, to
support@digital-metaphors.com and… -
I loaded your rtf into a TRichEdit on a form and it showed up empty. Then I
loaded the same rtf file into Word, and I could see the arrows. This is
certainly strange, where you see the arrows in a TRichEdit, but not in a
Report rich … -
We don't perform anything special for this character. We totally rely on the
behavior of Delphi's TRichEdit, and the different versions of the RichEd.dll
that exist. If Wordpad doesn't work, then that is not good news for us.
From wh… -
Ok, I get the dash character in the rtf, now. True, RB is using the same
rtf engine as the Delphi TRichEdit, ie. the RichEd.dll provided by Windows.
This is the rtf as created by typing into a Delphi TRichEdit on a form:
… -
I can't seem to be able to enter it into our editor, a Delphi TRichEdit
editor on a form, or even into WordPad. Maybe I'm not doing something
right? I never see a hypen looking line. It's always blank. If our rich
text control doe… -
The load from file works because the datapipelines are getting reinitialized
(the queries are reopened).
The ExecSQL should work when you call Active first. Normally, ExecSQL is
not used for Select statments, however, ADO has t… -
You are doing something very similar to our Autosearch approach. See the
installed RBuilder\Demos\Autosearch directory for an example of setting
query params in the first example folder. You'll notice that we close the
query so that… -
Yes, if you chagne the dataset sturcture, you'll want to be sure to recreate
the fields on the data pipelines. You should be able to toggle the
AutoCreateFields property to recreate the fields. If this doesn't work, then
you'll have … -
OK, then there must be an event handler getting assigned for one of the
templates that is meant for another template? Is this a possibility? Do
you have any event handlers that are specific to one report template, and
not others?
You should have no problem looping through the report templates in a list,
and loading them in to a TppReport object, then calling print. What
functions do you call to reinitialize? Are you assigning any Delphi event
handlers for eac…Could you provide more information about this report? What is happening in
the report's event handlers? Can you reproduce the problem on your machine?
Start reducing the complexity/components from the report until the problem
goes aw…Ok, you've got it. I see, you have the query open when the report is going
to run. The dataset needs to be closed before the report runs. By setting
OpenDatasource you are forcing the datapipeline to close the query and then
reopen …Connect the dataset to a dbGrid on a form to see what records the dataset is
returning at runtime. Is this master-detail? Is the data pipeline connected
to the Report.Datapipeline property?
Cheers,
Jim Bennett<…The OnCalc is going to fire too late. The group checks the text of the
variable. You'll need to code the variable's OnGetText event, and set the
variable's type to String. I assume you have one record per form and and
they are all s…When you recompiled the design time package into Delphi, where did you set
the bpl/dcp output directories to?- (From the Dephi menu: Tools |
Environment Options | Library) They default to ..\Delphi\Projects\bpl
usually. Make sure that…Relaxin, on Aug 19th reported that he modified his version our source to
work with BCB5
The template rtm file can be saved as ASCII text, and you can certainly take
these charactres and encrypt them. You application can simply use the public
events of the Template object to perform the encryption/decryption of the
rtm. …When you load the template, its event handler needs to be reassigned. Check
out the article describing this behavior in the TechTips - Templates thread.
Cheers,
Jim Bennett
Digital Metaphors
This is a known problem, wher ethe shapes and lines don' t line up. If you
look at the draw command left property values, you'll see that they are
different, between the line and the shape. The reason is we use the Pen to
draw the l…Can't say for sure. Basically, because of another fix we had to put in, it
broke this case. We're still trying to come up with a solution in the
engine.
Thankyou, for your patience.
Cheers,
Jim Benne…