Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   RaveReport V7.7.0 (deutsche Dialoge) (https://www.delphipraxis.net/151978-ravereport-v7-7-0-deutsche-dialoge.html)

Schorschi5566 8. Jun 2010 11:04

RaveReport V7.7.0 (deutsche Dialoge)
 
Hallo DP,

gibt es zu diesem Thema schon was Neues?

Die Tipp-Links, die ich hier bisher gefunden habe, existieren wohl schon lange nicht mehr.

Kann man die RaveReport-Dialoge lokalisieren? Verwendete Version: Rave V.7.7.0 mit Delphi 2010.


Danke im Voraus,
Uwe

alphaflight83 8. Jun 2010 11:28

AW: RaveReport V7.7.0 (deutsche Dialoge)
 
Liste der Anhänge anzeigen (Anzahl: 2)
Schau mal in den verlinkten Beitrag in Thomas Pfisters Blog ob dir das weiterhilft, da ist das ZIP-file aus den alten Nevrona Tipps angehängt.
Im 2ten Link ist auch noch ein Beispiel zum Renderpreview angehängt, das sollte auch recht interessant sein.
(Edit: Beide jetzt auch im Anhang)
Wie das mit Delphi 2010 zusammenspielt weiß ich nicht, mit 2009 gehts nach kleinen Anpassungen ganz gut.

Edit: Bevor die Nevrona Tipps irgendwann nicht mehr abrufbar sind stell ich Tipp #72 mal hier rein:

--------------------------------------------

Category
Rave - General
Question
How can I change the setup-dialogbox in an other look or in an other language, for example german ?
Solution
In Rave 5 exist a standard setup-form. Many users, especially in "non"-english countries, would localize this dialog.
Normally the Printsetup Form is displayed when executing the report to allow the user to select the report destination and other settings (copies, file format to use).
Copy the rpFormSetup.pas- and rpFormSetup.dfm-file in the project folder and change the filenames and the unit-name inside the pas-file and the form-name.
For example, in dtFormSetup (dt is the abbreviation of "deutsch"- german).

Sample Files: rave_dtformsetup.zip (Siehe Link oben oder Anhang)

Add dtFormSetup to the uses statement in the project. Make visual changes and localization to the form and save it.
Connect the RvSystem component with the RvProject component.

Select the RvSystem component and create the OverrideSetup event and enter the following code:
Delphi-Quellcode:
procedure TForm1.RvSystem1OverrideSetup(ReportSystem: TRvSystem;
OverrideMode: TOverrideMode; var OverrideForm: TForm);
begin
  case OverrideMode of
    omCreate:
      begin
        OverrideForm := TdtSetupForm.Create(nil);
        OverrideForm.Caption := RvSystem1.TitleSetup;
        (OverrideForm as TdtSetupForm).ReportSystem := ReportSystem;
      end;
    omShow:
      begin
        with OverrideForm as TdtSetupForm, ReportSystem do
        begin
          PreviewSetup := False;
          Aborted := ShowModal = mrCancel;
        end;
      end;
    omWait:
      begin
        {because showModal: no wait necessary!}
      end;
    omFree:
      begin
        OverrideForm.Free;
      end;
  end;
end;
Compile and run any of the reports, your special Setup Form should be displayed when you execute a rave-report.
-> this way doesn't override your setupform on a rave-update, too.

Tip created by Thomas Pfister

--------------------------------------------

Im Anhang die besagten ZIPs

Schorschi5566 8. Jun 2010 21:33

AW: RaveReport V7.7.0 (deutsche Dialoge)
 
Hallo Alphaflight83,

vielen Dank für Deine Antwort.

Das klingt vielversprechend. Probiere ich gleich mal aus. :D


Grüße,
Uwe


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:20 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz