AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Programmierung allgemein Datenbanken Design Modus mit Rave Reports
Thema durchsuchen
Ansicht
Themen-Optionen

Design Modus mit Rave Reports

Ein Thema von Luckie · begonnen am 16. Mär 2006 · letzter Beitrag vom 5. Jul 2006
Antwort Antwort
Seite 2 von 2     12   
Benutzerbild von Luckie
Luckie

Registriert seit: 29. Mai 2002
37.621 Beiträge
 
Delphi 2006 Professional
 
#11

Re: Design Modus mit Rave Reports

  Alt 3. Jul 2006, 10:21
Zitat von Igotcha:
Bin am Wochenende bei meinem Update auf BDS2006 auch in diese Falle getappt, obwohl die Installation von RAVE im Setup ausgewählt war, hat das Setup RAVE nicht installiert.

In der BDS2006 Prof. befindet sich auf CD3 das Setup zu RAVE. Einfach ausführen, fertig.
Hmpf, da muss man auch erstmal draufkommen. Danke für den Tipp, jetzt sind sie da.
Michael
Ein Teil meines Codes würde euch verunsichern.
  Mit Zitat antworten Zitat
merlin17

Registriert seit: 15. Dez 2002
Ort: Mittelfranken
980 Beiträge
 
Delphi 10 Seattle Enterprise
 
#12

Re: Design Modus mit Rave Reports

  Alt 3. Jul 2006, 11:00
Michael,

Zitat:
Muss da die von sakura erwähnte Erweiterung auch noch mal extra lizensiert werden?
yepp, für das BDS2006 brauchst Du Rave 7 BEX (in BDS ist "nur" Rave 6.5 BE enthalten) und dann noch die EUDL-Lizenz.
Zitat:
Ist die standalone Exe im Verzeichnis: C:\Programme\Rave5\Rave.exe der Editor, den man mit ausliefern muss, damit der Kunde die Reports noch editieren kann?
Du darfst NIE die Rave.exe weitergeben sondern nur die RavePack bzw. RaveSolo.dll!


thomas, TeamNevrona

hier ein Auszug aus der EUDL.txt:

Zitat:
Please see the Single User License Agreement and Limited Warranty in the
printed manual for more information on the acceptable use of Rave Reports.
The following Agreement applies to redistributable files and the End User
Designer License.

End User Designer License Agreement
-----------------------------------

The following applies only to those who purchased the End User Designer
License (EUDL) with Rave Reports.

If you have purchased the EUDL with Rave Reports, you can include and
interface with the end-user visual report designer files (located in the
REDIST folder under the main Rave Reports install folder) with your
application. Except for the files in the REDIST folder, no other files in
the Rave Reports install folder (or its subfolders) may be distributed
with your application.

THE END-USER VISUAL DESIGNER MAY NOT BE DISTRIBUTED, IN MODIFIED OR
UNMODIFIED FORM, AS PART OF ANY APPLICATION PROGRAM OR OTHER SOFTWARE THAT
IS A LIBRARY-TYPE PRODUCT, DEVELOPMENT TOOL OR OPERATING SYSTEM, OR THAT
MAY BE COMPETITIVE WITH OR USED IN LIEU OF RAVE, WITHOUT THE EXPRESS
WRITTEN PERMISSION OF NEVRONA DESIGNS.

The end-user visual report designer is intended to be used with a specific
application and that application's specific data. The end-user visual
report designer must be included with an application in such a way that it
CANNOT BE USED AS A GENERIC VISUAL REPORT DESIGNER on data that is not
actively, purposefully and specifically used by that application.

There is no runtime royalty charge for including the end-user visual
report designer with applications beyond the initial purchase price of the
EUDL. The end-user visual report designer may be distributed with any
application that is owned or maintained by the holder of the EUDL and may
be distributed with unlimited quantities of those applications.

Zitat:

The following files are redistributable with your application:

Nevrona.Rave.Vcl.dll (.NET runtime assembly)
Rave60VCL90.bpl (Win32 runtime assembly)
Rave report projects (*.rav files) created by the Rave Visual Designer

The following files are only redistributable when they are linked into your
applications by the Delphi compiler:

*.dcu
*.dcuil
*.dcp
*.dcpil
*.res
*.dfm
*.nfm

All other files (including documentation and help files) are not redistributable
and are licensed only for use on the developers machine according to the terms
in the Rave Reports Single User License Agreement. If you are interested in
providing visual designer support (including documentation) to the end users
of your applications, please visit http://www.nevrona.com/rave/be.html for
information on obtaining an End User Designer License (EUDL).
- TeamNevrona cannot respond to questions received via email -
http://rave-notes.blogspot.com
  Mit Zitat antworten Zitat
Benutzerbild von Luckie
Luckie

Registriert seit: 29. Mai 2002
37.621 Beiträge
 
Delphi 2006 Professional
 
#13

Re: Design Modus mit Rave Reports

  Alt 3. Jul 2006, 11:08
Zitat von merlin17:
Du darfst NIE die Rave.exe weitergeben sondern nur die RavePack bzw. RaveSolo.dll!
Deswegen frage ich.

Ich werde erstmal sehen, ob ich mit den Komponenten einen Report zusammenbekomme. Den kann ich ja dann als rav-Datei abspeichern und an den Kunden ausliefern. Dann baue ich irgendwo einen Button ein:
Code:
Ravereport1.Edit('foobar.rav'); // Pseudocode
Liefere die RaveSolo.dll mit aus und der Kunde kann dann den Report noch mal bearbeiten und an seine Wünschen anpassen? Geht das so ungefähr, wie ich mir das jetzt so naiv vorstelle?
Michael
Ein Teil meines Codes würde euch verunsichern.
  Mit Zitat antworten Zitat
merlin17

Registriert seit: 15. Dez 2002
Ort: Mittelfranken
980 Beiträge
 
Delphi 10 Seattle Enterprise
 
#14

Re: Design Modus mit Rave Reports

  Alt 3. Jul 2006, 11:23
TRvProject1.Design ist besser <g>

Delphi-Quellcode:

....
   try
      begin
        RaveProject1.ProjectFile := OD_Rave.FileName;
        RaveProject1.Design;
      end
    except
      MessageDlg('Es wurde eine falsche (oder keine?) ' + #13 + #10 +
        'Berichtsdatei ausgewählt!', mtError, [mbOK], 0);
    end;

procedure TFHaupt.RaveProject1DesignerSave(Sender: TObject);
begin
  RaveProject1.Save;
end;
- TeamNevrona cannot respond to questions received via email -
http://rave-notes.blogspot.com
  Mit Zitat antworten Zitat
Benutzerbild von Luckie
Luckie

Registriert seit: 29. Mai 2002
37.621 Beiträge
 
Delphi 2006 Professional
 
#15

Re: Design Modus mit Rave Reports

  Alt 3. Jul 2006, 11:27
Jupp, war j auch nur Pseudocode. Dann hätte ich erstmal die nötigen Informationen. Jetzt mus sichnur noch auf den Chef warten, damit er mir die Zugangsdaten zur OracelDB gibt und ich etwas rumspielen kann.
Michael
Ein Teil meines Codes würde euch verunsichern.
  Mit Zitat antworten Zitat
Benutzerbild von Luckie
Luckie

Registriert seit: 29. Mai 2002
37.621 Beiträge
 
Delphi 2006 Professional
 
#16

Re: Design Modus mit Rave Reports

  Alt 5. Jul 2006, 14:47
Aber dafür brauche ich dann die Rave.dll oder? Zumindest meckert er, wenn ich den Code ausführe, dass er die Rave.dll nicht findet. Könnte man die irgendwo bekommen, damit man sich das mal angucken kann?
Michael
Ein Teil meines Codes würde euch verunsichern.
  Mit Zitat antworten Zitat
Antwort Antwort
Seite 2 von 2     12   


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 03:45 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