digitalmetaphors
Comments
-
You cannot disable writing to the .ini by deleting the property as the state
must be saved to either the .ini or to the registry. The only real way to
prevent the state from being saved is by modifying the
TppReportExplorerForm.Destro… -
Can you please give a more thourough description of what you are trying to
do?
--
Cheers,
Alexander Kramnik
Digital Metaphors
-
In order for the absolute page number to be displayed, male sure that the
'Reset Page Number' in the Report->Groups dialog is unchecked. You can also
display a variable or a label instead of a system variable to display the
report'… -
Please make sure you are using version 6.11a of Advantage as that has a fix
for ReportBuilder. If that does not resolve the problem, try running the
report off a Paradox table and see if the error reproduces itself.
--
Chee… -
Set the group header band to Visible = False. Once the title band prints,
the first detail band will print. Use the DetailBand.AfterPrint event to
setthe group header band visibility back to true.
Cheers,
Jim … -
If you want to reprint the header infomation, then place the header
components inside (at the top) of the detail band. Remove the header band
since it is no longer needed.
Cheers,
Jim Bennett
Digital Metap… -
If the top half is going to be the original copy and the bottom of the page
is the client copy, then I would try to leverage the
DetailBand.BandsPerRecord. Could you describe the behavior when this
property is set to 2? Is there any… -
It works here when we test on our Lexmark printer from Win2K in RB 6.03, by
setting duplexing in the dialog and not on the report object. You could try
setting the Report.PrinterSetup.Duplex property to dpVertical or
dpHorizontal to … -
You can download these forms as PDF's from www.IRS.gov
Cheers,
Jim Bennett
Digital Metaphors
-
RB has two components which wrap around a Teechart component (TppTeeChart
and TppDPTeeChart). The visual editor and chart component are the same as
if you set them in code for a Teechart control on a form.
If you have a questio… -
You need the exact Teechart version 5.02a in order to have it work correctly
with RB 6.03.
Cheers,
Jim Bennett
Digital Metaphors
-
Sorry, my mistake. Try setting the GroupB.KeepTogether by using the event
handler for the GroupB.AfterGroupBreak event.
Cheers,
Jim Bennett
Digital Metaphors
-
Try setting the Group B KeepTogether to false. Use the AfterPrint event of
the group footer band to set the KeepTogether to true. This way only the
first group won't keep together and all the others will.
You can access the gro… -
We did not receive anything from you at support@digital-metaphors.com
Please try sending it again.
Cheers,
Jim Bennett
Digital Metaphors
-
Forgot to mention: Please send an example to support@digital-metaphors.com
Cheers,
Jim Bennett
Digital Metaphors
-
We will need an example project that isolates the problem. The example
project should be pared down to show the behavior with the least amount of
your code as possible. Our approach to solving these kinds of problems is to
delete part… -
What database are you using? Download the demo version of RB 6.03 to see if
the problem goes away. Upgrading from v5.56 is a free, but v5.55 and
earlier is not. If the problem does go away by using RB 6.03, then contact
info@digital… -
I don't think you can order by ID and have the records print ID's in the
order 2, 3, 1.
What if we think of this table as two tables: classes and students. You
should be able to contrive a master-detail configuration based on yo… -
In the query, order by ID, then LastName. Your result set will be ordered
so that you get the groups of ID's together, and then the last names will be
ordered inside of the ID groups.
Cheers,
Jim Bennett
Digital… -
Thankyou, for the suggestions.
Cheers,
Jim Bennett
Digital Metaphors
-
Though we see great potential in the Linux theater, we must make our
decisions based on business realities. Therefore, we currently have no plans
to develop a Kylix version. We will certainly make an announcement if this
situation cha… -
Sorry, no plans at this time. We are currently working on our Server
Edition for Delphi.
Cheers,
Jim Bennett
Digital Metaphors
-
You could test with a report object loop where you find the component. See
the TechTips newsgroup in the code based thread for an article describing
how you can alternatively find a component in a report. If you have
subreports, you… -
Ok, try placing a Region component in the subreport's detailband. Place all
of the detail band controls inside the region. Draggin a component in the
region adds it to the region. If a component appears inside of a region, it
does n… -
This is a multi-part message in MIME format.
-
This was changed when we had to work inside of Delphi 6. You'll now need to
get the series object through the RB Chart control:
ppTeeChart1.Chart.Series[0]
Cheers,
Jim Bennett
Digital Metaphors
… -
There is also a TechTips newsgroup article in the Printer thread. It
inllustrates what Chris is mentioning. The message is called "Selecting
Paper Bins for Each Page."
Cheers,
Jim Bennett
Digital Metaphor… -
You can dynamically adjust the height of the band that you want to position
based on the margin settings of the printer in the BeforePrint event of that
band. For example, the following code would always place the Footer band 8
units … -
The good news is that your way does work. I'm not sure if there is a way to
apply a single display format to accomplish the same thing. Have you tried
experimenting with the FloatToStrF function?
Cheers,
Jim Bennett<… -
You will need two ADOConnections.
The first connection will connect to the SQLServer by building a connection
string using the OLE DB Provider for SQL Server.
The second connection will connect to Paradox with the ODBC dri…