nardmoseley
Comments
-
Thank for the feedback. This is something we can consider adding to a future
release.
For now, you should be able to place ppJPEG and ppGIF and ppGIFImgae in the
'contains' clause of your run-time package, or if you pref… -
Thanks for your interest in ReportBuilder.
ReportBuilder does not currently support C++Builder. One option might be to
create the reports using Delphi and then compile them into a package that
can be used by C++ Builder.… -
I tried a simple test here using Delphi 2009, RB 11.04 and did not encounter
any issues.
I modified the RBuilder\Demos\DLL example to include ppPNG in the uses
clause so that the PNG support would be linked into the .dll… -
I created a patch for this error yesterday. A customer reported that
modifying the Windows screen resolution while previewing a report caused an
AV. I traced it back to TBX and then to JvInspector.Paint.
I just emailed y… -
Did you try running demo 112 of the main reports demo project
(Demos\Reports\Demo.dpr)?
In my testing here the demo works correctly.
As test try creating an example that does not use the DevExpress grid. Use a
You can typecast the TBytes as Longint. Demo 0112 in the main reports demo
shows an example of this.
myDBPipeline.AddBookmark(Longin(myBookmark));
TBytes is a dynamic array, so make sure that you keep a refere…
Here is an rbWiki article that explains Code 128 encoding.
http://www.digital-metaphors.com:8080/RCL/BarCode/Manual_Encode_128
Thanks for reporting this. (I had to modify my Windows Regional settings to
recreate the error and then was able to fix it).
There is now a patch available that fixes this issue. Registered users of RB
11.04 can send a r…
The RB source contains conditional compilation directives. These are defined
in ppIfDef.pas, which is installed with the product.
The compiler error you are receiving indicates that you are not using the
correct ppIfDef.…
Starting with RB 10 we re-wrote much of the UI and started using the
TB2000/TBX controls which introduced the Office style
toolbars/menubars/docking etc. and the support for themes/skins. We also
updated all of the icon…
If you place the mouse inside the edit box and type, then it will work.
Do /not/ click the down arrow to expand the list. If you click the down
arrow and then type, it will not work - you will receive beeps.
<…
I created a query on the Customers table in the DBDemos data. From the
Design workspace, I create a DBText and then I can select the DataField list
on the Edit Toolbar and type 'Co' and it select the Company item.
--
RB 11.04 restores support for this feature.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
For each parameter, set Parameter.AutoSearchSettings.Enabled to False
Or
Use the Report.BeforeAutoSearchDialogCreate event to set
Report.ShowAutoSearchDialog to False.
--
Nard Mose…
I loaded the "all.txt" into a TppMemo in ReportBuilder 11/D2009 and was able
to preview and print to the printer correctly.
I notice some of the text lines have unprintable characters. The characters
do not appear in pre…
No it is not possible. RB 11 for D2007 contains no support for Unicode.
D2007 is Ansi String based. RB 11 for D2007 is Ansi string based.
D2009 is Unicode based. RB 11 for D2009 is Unicode based.
--
For Unicode you need D2009 and RB 11.
Starting with Delphi 2009 the VCL is Unicode based. RB 11 for D2009 is also
Unicode based.
RB 11 and Unicode....
in D2007 - How to print text with Unicode? Comment by nardmoseley June 2009
Starting with RB 10, the MRU (or LastReportAccessed) feature was re-designed
to be more reliable. The format is slightly different. In your example, the
RO and R1 items should have the report names surrounded by " ", like R2 and
I recommend updating to RB 11.05 and then re-test.
Prior to installing RB 11.05, follow these steps.
http…
Please see my reply to your post in the subreports newsgroup.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Select the install .exe file, press right mouse, select Properties. Select
either Details/Version tab depending on Windows Vista/XP. The File Version
will be RB Version + MonthDay of build.
Build 2 = 11.0.5.71
Build…
This is not a known issue, nor can we duplicate it here.
Please configure your newsreader to post using your real name. That is a
requirement of these newsgroups.
When posting, please provide environment details inc…
Text wrapping is calculated during report generation, not during rendering.
For archived reports, which sounds like what you are describing, the pages
are already generated and contain the wrapped lines of text. The preview and
Try printing the report to the printer. (and also try previewing at 100%).
The report output is optimized for the printer - sometime scaling back to
preview, there is a loss of accuracy in the text width.
The previe…
Perhaps newswhat.com only retrieves new messages. The old messages are still
here on our news server. This newsgroup has 6000+ messages.
Tamarack can also be used to search the newsgroups.
in Archived items Comment by nardmoseley July 2009
There is now a patch available for RB 11.05 that resolves the issue.
Registered users of RB 11.05 can email support@digital-metaphors.com to
request the patch.
This is related to a change made for RB 11.05. The behavior …
Report.Parameters[ ] is read-only. Try
Report.Parameters.Items['InvoiceAmount'].Value
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
One option is to use Report.Paramters[ ]. Add a Report.Parameter. Give it a
name and a dataype. Write code inside the report to update the parameter.
Report.Parameters can be access via RAP code and Delphi code.
--…Use subreports. For two detail bands, place two subreports in the main
detail band. Acces the workspace for each subreport and design the layout
there.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.co…
Windows has extremely tight restrictions on Simple MAPI because malware has
exploited that API.
For a server application I recommend using Indy or Synapse. Or try EasyMAPI
which uses Extended MAPI. EasyMAPI is available …