digitalmetaphors
Comments
-
In RAP, when are you assigning the value to the variable?
Cheers,
Jim Bennett
Digital Metaphors
-
You can access the Rowdefs and Columndefs array properties to change the
definitions. See the help file on the TppColumnDef and TppRowDef classes.
They have properties for field name and field alias which you can set.
Che… -
Yes, support@digital-metaphors.com Thanks.
--
Cheers,
Jim Bennett
Digital Metaphors
-
It works for me. Do you have multiple copies of the unit being debugged? Do
you have little blue dots left of your editor? I can send you my test
project if you would like.
Cheers,
Jim Bennett
Digital Met… -
The DBCalc treats the null data as valid records when it counts. To get
different behavior, you'll have to code a TppVariable's OnCalc event handler
and make the variable skip nulls and include zeros when calculating.
Che… -
Use TppVariables and code their OnCalc event handlers to check the
datapipeline field value in order to determine if this record value is null
or not. If it isn't null, then you can increment the value of one of the
TppVariables (the… -
Surf www.waler.com
There should be a QR2RB converter on the left frame on the main page. We
also recommend that you go through the installed Developer's Guide and run
through the RB tutorials in order to acquaint yourself with … -
Hey Chris, sorry about the doubled reply, I need to hit refresh just a
little bit quicker next time:)
Cheers,
Jim Bennett
Digital Metaphors
-
You can determine when a new page is printing by using the
Report.OnStartPage event, which fires once for each page. Use a TppVariable
and its OnCalc event to code the page increment. If you have a group for
parcel number, you can r… -
Yes, it is the XP manifest. Here is an article I found
http://delphi.about.com/library/bluc/text/uc111601a.htm
At the bottom it states
"… -
Sorry, ReportBuilder doesn't install into Delphi 6 trial edition.
Cheers,
Jim Bennett
Digital Metaphors
-
You can use MIDAS and the daMIDAS DADE plugin to connect. daMidas is
available from this page on our website:
http://www.digital-metaph… -
Yes, you can.
You can connect a report pipeline to a TClientDataset since it is a TDataset
descendent.
Cheers,
Jim Bennett
Digital Metaphors
-
Sounds cool. We don't have a live demo at this time. We are developing the
Server Edition as we speak. It is able to serve reports over the web using
no web browser plugins, as it generates javascript/HTML for the browser
(Netscape … -
The TList class is available in RAP. The TList is designed to store
objects.
Cheers,
Jim Bennett
Digital Metaphors
-
It looks like TransactionNo is the key linking field. You can use one
report, but place 4 detail subreports in the detail band. Toggle the
subreport visibility properties to view only one of the subreports before
the main report pri… -
Please contact the author of your RTF device for better service.
Cheers,
Jim Bennett
Digital Metaphors
-
The autosearch setting should have no effect on wether or not you can create
search criteria in the query tools. The DataDictionary Builder does set the
autosearch field of the fields to false as the default value. This is
correct. … -
Can you send us the paradox tables which don't work to
support@digital-metaphors.com and we'll test it.
To test your ReportBuilder installation, can you successfully create reports
from the DBDemos sample database?
It works in our tests here. Do you have any fields selected (first page of
the wizard?
You should be able to choose Edit SQL as Text from the SQL tab of the query
designer.
Which database are you using?
Wh…You can control where the ini file is located by setting the the IniStorage*
properties on the TppDesigner component. You can view the help file on
these properties for more information.
Cheers,
Jim Bennett
Digi…You can join the master and detail tables in order to create a calculated
field to sum the data for each year of the master together. You can use
left to right column traversal in a detail subreport to show the details and
then place…Use a TppDBMemo with Stretch set to True. The DBText will not stretch, but
rather is a fixed height control when word wrapping.
Cheers,
Jim Bennett
Digital Metaphors
For a OnePass report, try this:
uses
ppTypes, ppViewr, ppDevice;
procedure TForm1.Button1Click(Sender: TObject);
var
lDevice: TppDevice;
begin
lDevice := TppDevice.Create(Self);
lDevi…Set the Report.PassSetting to psTwoPass or you can also generate to a
generic device to cache the pages:
var
lDevice: TppDevice;
liIndex: Integer;
begin
lDevice := TppDevice.Create(Self);
…Do it on the dataset. Show a simple dialog before you print the report to
ask the user to see a Top or Bottom N report. Depending on which database
you have, there are different functions to facilitate this. You'll have to
check yo…I know you have it solved, but can you get us a layout which shows the
problem and we can tell you why it isn't working. Please send it to
support@digital-metaphors.com
Cheers,
Jim Bennett
Digital Metaphor…What does your data structure look like? How are you traversing the
datasets?
Cheers,
Jim Bennett
Digital Metaphors
You can set the subreport's title band's NewPage property to true. The title
band can have a height of zero if you aren't using it. You can also set the
subreport's PrintBehavior property to pbSection and this will force the
subreport…Looks like it stretches if you use the LoadFromFile method, but if you set
the RichText property it doesn't stretch. There is something that is
causing the pagestyle print height to get set back to static. You can set
the PageStyle.…