nicocizik
Comments
-
James,
You can try changing our source to not perform the date-time conversion but
rather always save it down in a certain format. See TdaSQL.ResolveCriteria
in the daSQL.pas file.
--
-
James,
Currently there is no way to get the value as a variant. The
daSQL.Criteria[].Value can only be a string. This is definitely on our
to-do list for future enhancements.
--
-
James,
Check out the article below.
-------------------------------------------------
Tech Tip: Date formats used by DADE
-------------------------------------------------
DADE handles in two phases:
<… -
Charles,
1. Check all your data settings and make sure they are configured properly
and that your report is connect correctly to a datapipeline.
2. Try connecting your datasources to a DBGrid and see if you are actuallyCharles,
Move the report component to a Tform.
-------------------------------------------
Article: TppReport and TDataModule
-------------------------------------------
"I've been told not to place a TppRe…Charles,
We are unable to recreate this problem here. Try to create a simple example
using one of our demos that demonstrates this behavior and either send the
example to support@digital-metaphors.com so we can take a look, or …Charles,
There are no know issues with the report wizard. Try recreating the problem
using one of our demo projects. If you still experience the same behavior,
you may have a corrupt install of ReportBuilder. Try reinstalling …Hi James,
You can access the GlobalOnCreate event by right clicking in the "Module
View" window and selecting the "Module" option. Then click on the icon in
the tree structure that reads "Events". You will then see the
Gl…James,
Try using the GlobalOnCreate event. This event fires just after the
GetAutoSearchValues event fires but is the very first event fired if no
autosearch criteria is defined.
--
Moisey,
This issue could be caused by a number of things. Are you able to connect
to your database using BDE directly, not using ReportBuilder but rather a
DBGrid? If you are, be sure that the datasettings in ReportBuilder mat…Mirto,
After extensive research, I was unable to recreate the issue you are having.
I am using ReportBuilder 7.02 with an Oracle 9i database and DOA to connect.
I used the script provided in the ReportBuilder install to create t…Mirto,
We are currently researching this issue. I will keep you updated as we find
more information about the problem you are experiencing. Thank you for your
patience.
--
Mirto,
Drilldown reports are not supported using report archive files. They need
to be live reports to support drilldown. There may be a workaround using
parameters in the future, but this is purely theoretical.
-- …Moisey,
Try using the Data Dictionary to filter the tables you want to see in the
selection. The Data Dictionary is already included in the demo you are
using, you just need to activate it. Instructions on doing so are availab…Tom,
You need to set the PrintPosition property of the summary band. This way
you can adjust where this band will print on the last page of the report.
You can access the PrintPosition by right clicking inside the summary band<…Frank,
You can do this by creating a string variable and adding the datafields to
it leaving spaces in between each field. Check out demo 33, located in the
\RBuilder\Demos\1. Reports... directory (dm0033.pas). This demo shows…Hi Raymond,
ReportBuilder gets all available fronts from Windows that can be used by the
printe device context. Check out the TppFontList class located in the
ppUtils.pas unit for the code ReportBuilder uses to retrieve all ava…Hi Moisey,
You can use the following method to check if the report was successfully
printed to a specified device... such as a printer.
------------------------------------------
Tech Tip: Detecting whether Report wa…Moisey,
Instead of loading subreports, you could send multiple report objects to the
printer, and in each report after the first one, set the
Report.ShowPrintDialog property to False. To save the print settings, you
will n…Hi Moisey,
The simplest way to do this would be to load all the reports you need to
print either manually or dynamically into a single report using section
style subreports. Then when you print the single combined report, the p…Hello,
This is not a known problem with ReportBuilder. Please send an example that
demonstrates the problem to support@digital-metaphors.com and we'll take a
look at it for you.
--
This message has been answered via. e-mail.
--
Please do not cross post. This message was answered in the
reportbuilder.general newsgroup.
--
Hi Vinnie,
Check out Demo 127 (ct127.pas) located in the \RBuilder\Demos\2.
CrossTabs\... directory. This demo shows how to gain control over the text
fields of a crosstab by using the GetText event. It will give you a
st…Hi Melissa,
Unfortunately there is no component available for ReportBuilder to view HTML
files in a report. You might search on line for an HTML to RTF conversion
tool as ReportBuilder does support the viewing of RTF files usin…Hi CK,
Which edition of ReportBuilder are you using (ie. Standard, Pro,
Enterprise)? The raIDE.dcu file should be located in the \RBuilder\lib\...
directory. Be sure that your library path is pointing to this directory
wh…uses
ppJPEG, ppCtrls;
procedure TForm1.ppDesigner1CreateComponent(Sender: TObject; Component:
TComponent);
begin
if Component is TppDBImage then
TppDBImage(Component).GraphicType := 'JPEG';
end;
Hi Richard,
This is a known issue and was addressed in ReportBuilder 7. Please download
a trial verion of ReportBuilder 7.03 and test with that. I was also unaware
there was an XP manifest component for Delphi 5. Is this an a…Hi Paul,
Sorry for the delay in this response. It looks as though you may not have
the RB BDE package installed. This is new for RB 7.03. If you go to your
DataDictionary and drop down the BuilderSettings.Session type, do you…Hi Paul,
Check to see that all your databases are showing up if you place a TTable on
a form. Are you able to recreate the issue using our End User Database
demos?
--