digitalmetaphors
Comments
-
Try temporarily switching your print driver to HP LaserJet 5. If the error
goes away, download the latest print driver for your current printer.
--
Tom Ollar
Digital Metaphors Corporation
-
Here's some code that will fix the problem.
uses
ppUtils, ppTypes;
procedure Tfrm0081.ppReport1DetailBeforePrint(Sender: TObject);
var
llCurrentPosition: Longint;
liLineHeight: Integer;
llLineHe… -
Likely cause: the Report.DataPipeline property is not set...
-
--
Tom Ollar
Digital Metaphors Corporation
-
-------------------------------------------------
Tech Tip: How to modify the DatabaseName stored
with a DADE Query
-------------------------------------------------
Currently when DADE is used to create dataviews… -
>
I've reproduced this problem in D6 with RB 6.03. Until we've found a work
around, I would put all of the data access components on the form.
debugger
Try shutting down Delphi and running the EXE by itself. Microsoft … -
In what context does the setting fail, printing or editing in the RichText
editor. The reason I ask is because there is a chain of TRichEdit controls
involved, and the setting could fail at any point along these.
Cheers,
<… -
Neither is grouping nor searching on a calculated field is supported in the
visual Query Designer or Query Wizard. In order to create this type of SQL
you'll need to manually edit the SQL. You can do this by proceeding to the
last pag… -
If you have a data pipeline connected to a TQuery, and you add calculated
fields to the query, you can get the data pipeline to refresh by setting
AutoCreateFields to False, then True (toggling it that is.) This should
allow you to s… -
If you are not printing LeftToRight, I would recommend using the
BandsPerRecord setting on the DetailBand. Accesible via the popup menu
Position... option.
--
Tom Ollar
Digital Metaphors Corporation
-
Create your own descendant of TppDrawRichText which overrides the Draw
method. Then assign this new DrawCommandClass to your rich text component:
ppRichText1.DrawCommandClass := TmyDrawRichText;
ppReport1.Print;
func… -
Yes.
--
Tom Ollar
Digital Metaphors Corporation
-
There is:
OnLocateRecord: where you can take responsibility for finding the record in
which the report template should be saved.
reOnLocateRecord: where the Report Explorer takes responsibility for finding
the record … -
I would try using a PageStyle to emulate the form. Use the detail band to
show the data only...
--
Tom Ollar
Digital Metaphors Corporation
-
var
lMemo: TppMemo;
lBitmap: TBitmap;
liTexHeight: Integer;
begin
lMemo:= TppMemo(aComponent);
lBitmap := TBitmap.Create;
lBitmap.Canvas.Font := lMemo.Font;
liTextHeight :… -
You can only use one TeeChart wrapper component at a time (i.e. you can't
load D6 support for both 4.04 (60) and 5.02 (66) at the same time.) The
quickest way to resolve this problem is probably to complete the corrupt
install direct… -
I don't have a silver bullet answer on this one. We do have Windows 98
computers we test with here and (of course) reports print fine for us from
these. Probably the best way to attack this one is to pick one report
that's not workin… -
You can create a Label component and code the concatenation in the
BeforePrint event of the band containing the component. With this approach
you would be using a real Delphi event handler.
If you want to save the event handler… -
Memos always WordWrap, but only CharWrap if you tell them to. Right-click
and deselect CharWrap and you should get the results you are requesting.
--
Tom Ollar
Digital Metaphors Corporation
-
When exactly does it AV? When you print to the screen, archive, or printer?
Try testing with a simple report which has a single chart in it and nothing
else. Create a test project to do this, not your app. The test project
should h… -
Does our end user FF2 demo work for you? If this is working, then compare
your project to the installed FF2 demo project for dissimilarities.
Always be sure that the datasettings are correct when you first go into the
DADE work… -
Thanks, this has been fixed for the next maintenance release.
Svein, please send a request which includes your correct email address to
support@digital-metaphors.com and we'll send you a patched unit.
Cheers,
Ji… -
Yes, and you should also notice that when you swap a datapipeline on the
report, it should automatically reconnect the datapipeline connections to
all of the data aware controls.
Cheers,
Jim Bennett
Digital… -
Have you tried changing the ZOrder of the subreports (SendToBack /
BringToFront). One thing you can do is place the subreport in the other
subreport. If you want the child subreport to print first, you could place
the section subrep… -
Forgot to mention that you could print them all to archive, and then once
that is done, you could append them together in a single PDF.
Cheers,
Jim Bennett
Digital Metaphors Corp
-
There was a thread last week, in this NG, where you could print to archive,
and then append the archive files together into a PDF.
Look for this thread - "Slightly OT: Multiple RAF to single PDF?" 2/1/2002
Cheers,Thankyou, for the suggestions. I'll make sure they are on the ToDo list.
Cheers,
Jim Bennett
Digital Metaphors Corp
Resize the group header to the page height you need to fit the form. Set the
main report's detail band height to zero. Go into the groups dialog and
turn off 'Print group header on subsequent pages.' Then in the group
footer, place …You should be able to place a subreport in the group header/footer band, and
then use its PageStyle band to have it occupy the height of the page.
Cheers,
Jim Bennett
Digital Metaphors Corp
You can easily write a routine to take a .RAF file and load it into a blob
field or a TMemoryStream:
myFileStream := TFileStream.Create('myArhcive.RAF', fmOpenRead);
myFileStream.Position := 0;
myBlobField.LoadFromSt…We looked in our DADE plugins, daADO.pas and daDOA.pas, and when we tried to
add Oracle support to daADO, we kept running into more problems (Oracle
errors). Unfortunately, you'll have to use DOA to connect to Oracle and ADO
to conne…