Pagina 1 di 3 1 2 3 ultimoultimo
Visualizzazione dei risultati da 1 a 10 su 22
  1. #1

    [Delphi 2007] Stampare report in maniera gratuita

    Salve a tutti,
    utilizzo Delphi 2007 della borland e vorrei poter generare dei record da un database e mandarli in stampa. Sapete dirmi se ci sono delle funzioni per la creazione dei report già presenti nel compilatore? oppure potete consigliarmi un generatore di report gratuito? l'importante è che ci sia una buona documentazione assieme, magari con qualche esempio

    Sinceramente stavo provando FuzzyReport (consigliato sul sito di html.it) ma mi sembra che non ci sia una versione per il mio compilatore, del resto non riesco nemmeno ad installarlo. Ho provato Freereport
    ma dopo averlo installato non riesco a trovare uno straccio di documentazione per capire come si usa.

    Vi ringrazio in anticipo per la disponibilità,
    Neptune.
    "Estremamente originale e fantasioso" By darkiko;
    "allora sfiga crepuscolare mi sa che e' meglio di atmosfera serale" By NyXo;
    "per favore, già è difficile con lui" By fcaldera;
    "se lo apri te e invece di "amore" ci metti "lavoro", l'effetto è lo stesso" By fred84

  2. #2
    Hai già provato ReportMan?

  3. #3
    Originariamente inviato da pallinopinco
    Hai già provato ReportMan?
    Ah, lo utilizzavo anche per vb.net, se riesco a farlo andare anche per delphi è ottimo.

    Dunque fino ad ora ho:

    - Installato il designer;
    -Scaricato e scompattato R. M. Components Delphi/Kylix;

    Ora, contando che uso delphi 2007 della borland, quali passi devo eseguire per installarlo?

    Qu sembra che ci siano i componenti solo fino a delphi 2005.

    Tra l'altro ci sono due guide di installazione, per delphi e per delphi.net, quale delle due dovrei seguire?
    "Estremamente originale e fantasioso" By darkiko;
    "allora sfiga crepuscolare mi sa che e' meglio di atmosfera serale" By NyXo;
    "per favore, già è difficile con lui" By fcaldera;
    "se lo apri te e invece di "amore" ci metti "lavoro", l'effetto è lo stesso" By fred84

  4. #4
    Moderatore di Programmazione L'avatar di alka
    Registrato dal
    Oct 2001
    residenza
    Reggio Emilia
    Messaggi
    24,310
    FuzzyReport si utilizza senza problemi anche su D2007, solo che è necessario manipolare il file .inc, che contiene delle costanti di compilazione condizionale, affinché vengano prese in considerazione quelle che segnalano l'uso della versione di Delphi di riferimento.

    Si tratta delle poche modifiche generalmente necessarie per aggiornare il codice prodotto con una versione precedente di Delphi (anche se non sembra, è un buon vantaggio, poiché aumenta la quantità di codice che è possibile sfruttare ricercandola online).

    Delphi 2007 è un ambiente per lo sviluppo solo su Win32, quindi non devi utilizzare le parti relative a Delphi.NET.

    Visto che entrambi ne avete fatto uso, che mi dite di questo ReportMan? E' un prodotto interessante e sufficientemente ampio?

    Personalmente, mi trovo sempre in imbarazzo quando devo scegliere un tool di reporting, e i RAVE Reports non mi danno molta soddisfazione.
    MARCO BREVEGLIERI
    Software and Web Developer, Teacher and Consultant

    Home | Blog | Delphi Podcast | Twitch | Altro...

  5. #5
    Come sai la scelta di un motore di reporting va fatta in base ai propri gusti personali ed alle proprie esigenze, posso comunque dirti che, per quanto mi riguarda, ReportMan (finora) si è rivelato all'altezza delle aspettative.

    Se fossi in te darei uno sguardo alle sue caratteristiche e lo proverei "a tempo perso", potrebbe piacerti.

  6. #6
    Originariamente inviato da pallinopinco
    Come sai la scelta di un motore di reporting va fatta in base ai propri gusti personali ed alle proprie esigenze, posso comunque dirti che, per quanto mi riguarda, ReportMan (finora) si è rivelato all'altezza delle aspettative.

    Se fossi in te darei uno sguardo alle sue caratteristiche e lo proverei "a tempo perso", potrebbe piacerti.
    Tu Reportman sei riuscito ad utilizzarlo con Delphi 2007? perchè se mi spieghi come si fa sarei molto più felice di utilizzare Reportman con cui già ho dimestichezza.

    Riguardo a fuzzyreport non è che ci capisca molto del del file di configurazione

    codice:
    {*****************************************}
    {                                         }
    {             FastReport v2.2             }
    {              Include file               }
    {                                         }
    {  Copyright (c) 1998-99 by Tzyganenko A. }
    {                                         }
    {*****************************************}
    
    
    {$B-} {- Complete Boolean Evaluation }
    {$R-} {- Range-Checking }
    {$V-} {- Var-String Checking }
    {$T-} {- Typed @ operator }
    {$X+} {- Extended syntax }
    {$P+} {- Open string params }
    {$J+} {- Writeable structured consts }
    {$H+} {- Use long strings by default }
    
    {$IFDEF VER90}
      {$DEFINE Delphi2}          // Delphi 2.0
    {$ENDIF}
    
    {$IFDEF VER100}              // Delphi 3.0
      {$DEFINE Delphi3}
      {$DEFINE OK_JPEG}
    {$ENDIF}
    
    {$IFDEF VER120}              // Delphi 4.0
      {$DEFINE Delphi4}
      {$DEFINE OK_JPEG}
    {$ENDIF}
    
    {$IFDEF VER130}              // Delphi 5.0
      {$DEFINE Delphi4}
      {$DEFINE Delphi5}  
      {$DEFINE OK_JPEG}
    {$ENDIF}
    
    {$IFDEF VER93}               // Borland C++ Builder 1.0
      {$DEFINE Delphi2}
    {$ENDIF}
    
    {$IFDEF VER110}              // Borland C++ Builder 3.0
      {$DEFINE Delphi3}
      {$ObjExportAll on}
    {$ENDIF}
    
    {$IFDEF VER125}              // Borland C++ Builder 4.0
      {$DEFINE Delphi4}
      {$ObjExportAll on}
      {$DEFINE OK_JPEG}
    {$ENDIF}
    
    {$IFDEF VER135}              // Borland C++ Builder 5.0
      {$DEFINE Delphi4}
      {$ObjExportAll on}
      {$DEFINE OK_JPEG}
    {$ENDIF}
    
    {$IFDEF OK_JPEG}
      {$DEFINE JPEG}
      {$DEFINE JPEG_8_BIT}       // Increases the draw speed.
    {$ENDIF}
    "Estremamente originale e fantasioso" By darkiko;
    "allora sfiga crepuscolare mi sa che e' meglio di atmosfera serale" By NyXo;
    "per favore, già è difficile con lui" By fcaldera;
    "se lo apri te e invece di "amore" ci metti "lavoro", l'effetto è lo stesso" By fred84

  7. #7
    Mentre questi sono i file di configurazione di reportman, come li dovrei modificare? :
    Zconf.inc
    codice:
    // This is enabled by the make webx command
    // to make the plugin, this is already done by makefile
    // and the dpr also defines it
    //{$DEFINE FORWEBAX}
    
    // Enable this if you have teechart pro
    //{$DEFINE TEECHARTPRO}
    
    
    //{$DEFINE INDY10}
    
    //{$DEFINE USETNTUNICODE}
    {$DEFINE DELPHI5UP}
    {$DEFINE USEDESIGNEDITORS}
    {$DEFINE USERPDATASET}
    {$DEFINE USEREPORTFUNC}
    
    // ZLIB Support by default enabled
    {$DEFINE USEZLIB}
    // Indy support , remote report execution for base components
    {$DEFINE USEINDY}
    
    {$IFDEF FPC}
     {$UNDEF USEZLIB}
     {$DEFINE BOOLFUNC}
    
    {$ENDIF}
    // Kerning support
    {$DEFINE USEKERNING}
    
    // Database drivers to be used by default
    {$DEFINE USESQLEXPRESS}
    {$DEFINE USEIBX}
    {$DEFINE USEADO}
    {$DEFINE USEBDE}
    //{$DEFINE USEZEOS}
    //{$DEFINE USEIBO}
    
    
    
    // Unsupported database drivers in Linux
    // To enable IBX under Kylix remove the related UNDEF
    // By default is not defined becuase Borland don't provide
    // it in default installation
    {$IFDEF LINUX}
     {$UNDEF USEIBX}
     {$UNDEF USEADO}
     {$UNDEF USEBDE}
     {$UNDEF USEIBO}
     // Fixes performance issues in Linux about TStringList
     {$DEFINE USEEVALHASH}
     // Active this if zoombie proceses are created when executing lpr (text output)
     //{$DEFINE ALTLINUXTEXTPRINT}
    {$ENDIF}
    
    // Database drivers to be used when performing a release
    {$IFDEF REPMANRELEASE}
    {$IFNDEF VER180}
     {$DEFINE USETNTUNICODE}
     {$DEFINE USEZEOS}
    {$ENDIF}
     {$DEFINE LINUXTEECHART}
     {$DEFINE TEECHARTPRO}
     {$DEFINE USEIBX}
    {$ENDIF}
    
    
    
    {$DEFINE USEVARIANTS}
    {$DEFINE USEBCD}
    
    
    // Delphi 5  compiler defines
    {$IFDEF VER130}
     {$DEFINE CHARPLACBOOL}
     {$UNDEF USEVARIANTS}
     {$UNDEF USEBCD}
     {$UNDEF USESQLEXPRESS}
     {$DEFINE MSWINDOWS}
    // {$UNDEF USEINDY}
    {$ENDIF}
    
    // Delphi 4  compiler defines
    {$IFDEF VER120}
     {$UNDEF DELPHI5UP}
     {$DEFINE CHARPLACBOOL}
     {$UNDEF USEVARIANTS}
     {$UNDEF USEBCD}
     {$UNDEF USESQLEXPRESS}
     {$DEFINE MSWINDOWS}
     {$DEFINE USEVCL}
     {$UNDEF USEIBX}
     {$UNDEF USEZEOS}
     {$DEFINE BUILDER4}
     {$DEFINE DEPHI4}
     {$UNDEF USEDESIGNEDITORS}
     {$UNDEF USEEXCEL}
     {$UNDEF USEADO}
     {$UNDEF USEINDY}
    {$ENDIF}
    
    
    //  Builder 4 compiler defines
    {$IFDEF VER125}
     {$UNDEF DELPHI5UP}
     {$DEFINE CHARPLACBOOL}
     {$UNDEF USEVARIANTS}
     {$UNDEF USEBCD}
     {$UNDEF USESQLEXPRESS}
     {$DEFINE MSWINDOWS}
     {$UNDEF USEIBX}
     {$UNDEF USEADO}
     {$DEFINE BUILDER4}
     {$UNDEF USEEXCEL}
     {$UNDEF USEINDY}
    {$ENDIF}
    
    // May be you want to enable TEECHART under Kylix
    // but take care it needs an X server running
    {$IFDEF MSWINDOWS}
     {$DEFINE USETEECHART}
    {$ENDIF}
    
    {$IFDEF LINUXTEECHART}
     {$IFDEF LINUX}
      {$DEFINE USETEECHART}
     {$ENDIF}
    {$ENDIF}
    
    {$IFDEF LINUX}
     {$DEFINE LINUXPRINTBUG}
     {$DEFINE KYLIX2}
    {$ENDIF}
    
    {$IFDEF LINUX}
    {$IFDEF VER140}
     {$UNDEF KYLIX2}
    // Vcl File Filters is a missing feature of CLX Dialogs in kylix 2 and Delphi 6
     {$DEFINE VCLFILEFILTERS}
    {$ENDIF}
    {$ENDIF}
    
    // Delphi 7
    {$IFDEF VER150}
     {$DEFINE VCLFILEFILTERS}
     {$DEFINE EMPTYCOMBOBUG}
     {$DEFINE ISDELPHI7}
     {$IFDEF MSWINDOWS}
      {$DEFINE BLOBSTREAMBUG}
    //  {$DEFINE QUERYLINKBUG}
     {$ENDIF}
    {$ENDIF}
    {$IFDEF CLR}
     {$DEFINE DOTNETD}
     {$DEFINE INDY10}
    {$ENDIF}
    // DOT NET PREVIEW
    {$IFDEF DOTNETD}
     {$UNDEF USEEVALHASH}
     {$DEFINE DOTNETDBUGS}
     {$DEFINE VCLFILEFILTERS}
     {$DEFINE MSWINDOWS}
     {$UNDEF USEZLIB}
     {$UNDEF USEADO}
     {$UNDEF USEDESIGNEDITORS}
    // {$UNDEF USESQLEXPRESS}
    // {$UNDEF USEIBX}
     {$UNDEF USEZEOS}
    // {$UNDEF USETEECHART}
    // {$UNDEF USEBDE}
    // {$DEFINE FORWEBAX}
    //  {$DEFINE QUERYLINKBUG}
    //  {$UNDEF USEINDY}
    // {$UNDEF USERPDATASET}
    // {$UNDEF USEREPORTFUNC}
    {$ENDIF}
    
    // Delphi 2005
    {$IFDEF VER170}
     {$DEFINE CHARPLACBOOL}
    {$ENDIF}
    
    // Windows qtintf.dll has a bug about selecting horz paper
    // If horz paper is set and print setup is called seems
    // to work ok
    {$IFDEF MSWINDOWS}
     {$DEFINE HORZPAPERBUG}
    {$ENDIF}
    
    
    
    {$DEFINE ISDELPHI}
    {$IFDEF FPC}
    // {$UNDEF ISDELPHI}
     {$MODE DELPHI}
    // {$UNDEF USEVARIANTS}
     {$UNDEF USEBCD}
     {$UNDEF USESQLEXPRESS}
     {$UNDEF USEINDY}
     {$UNDEF USEEVALHASH}
    {$ENDIF}
    
    // Disable databases if webaxcontrol
    {$IFDEF FORWEBAX}
     {$UNDEF USESQLEXPRESS}
     {$UNDEF USEIBX}
     {$UNDEF USEADO}
     {$UNDEF USEBDE}
     {$UNDEF USEIBO}
     {$UNDEF USEZEOS}
     {$UNDEF USEBCD}
     {$UNDEF USEREPORTFUNC}
     {$UNDEF USERPDATASET}
    {$ENDIF}
    
    
    
    // VCL and CLX sharing compatibility
    {$IFDEF MSWINDOWS}
     {$IFDEF VER140}
       {$DEFINE CHARPLACBOOL}
     {$ENDIF}
    // Removed VCL and CLX compatibility due to duplicate
    // resource in DBGrids when compiling apps containing both
    // {$DEFINE VCLANDCLX}
    // {$USECLXTEECHART also removed}
     // C++ Builder 6 does not allow VCL and CLX
     {$IFDEF BCB}
      {$UNDEF VCLANDCLX}
      {$IFDEF VER140}
       {$DEFINE USEVARIANTS}
       {$DEFINE CBUILDER6}
      {$ENDIF}
     {$ENDIF}
     {$IFNDEF BCB}
      {$IFNDEF FORWEBAX}
    //   {$DEFINE USECLXTEECHART}
      {$ENDIF}
     {$ENDIF}
    {$ENDIF}
    
    {$IFDEF USETEECHART}
     {$IFDEF LINUX}
      {$IFNDEF FORWEBAX}
       {$DEFINE USECLXTEECHART}
      {$ENDIF}
     {$ENDIF}
    {$ENDIF}
    
    {$IFDEF FORCECONSOLE}
     {$UNDEF USECLXTEECHART}
    {$ENDIF}
    "Estremamente originale e fantasioso" By darkiko;
    "allora sfiga crepuscolare mi sa che e' meglio di atmosfera serale" By NyXo;
    "per favore, già è difficile con lui" By fcaldera;
    "se lo apri te e invece di "amore" ci metti "lavoro", l'effetto è lo stesso" By fred84

  8. #8
    rpconf.inc
    codice:
    // This is enabled by the make webx command
    // to make the plugin, this is already done by makefile
    // and the dpr also defines it
    //{$DEFINE FORWEBAX}
    
    // Enable this if you have teechart pro
    //{$DEFINE TEECHARTPRO}
    
    
    //{$DEFINE INDY10}
    
    //{$DEFINE USETNTUNICODE}
    {$DEFINE DELPHI5UP}
    {$DEFINE USEDESIGNEDITORS}
    {$DEFINE USERPDATASET}
    {$DEFINE USEREPORTFUNC}
    
    // ZLIB Support by default enabled
    {$DEFINE USEZLIB}
    // Indy support , remote report execution for base components
    {$DEFINE USEINDY}
    
    {$IFDEF FPC}
     {$UNDEF USEZLIB}
     {$DEFINE BOOLFUNC}
    
    {$ENDIF}
    // Kerning support
    {$DEFINE USEKERNING}
    
    // Database drivers to be used by default
    {$DEFINE USESQLEXPRESS}
    {$DEFINE USEIBX}
    {$DEFINE USEADO}
    {$DEFINE USEBDE}
    //{$DEFINE USEZEOS}
    //{$DEFINE USEIBO}
    
    
    
    // Unsupported database drivers in Linux
    // To enable IBX under Kylix remove the related UNDEF
    // By default is not defined becuase Borland don't provide
    // it in default installation
    {$IFDEF LINUX}
     {$UNDEF USEIBX}
     {$UNDEF USEADO}
     {$UNDEF USEBDE}
     {$UNDEF USEIBO}
     // Fixes performance issues in Linux about TStringList
     {$DEFINE USEEVALHASH}
     // Active this if zoombie proceses are created when executing lpr (text output)
     //{$DEFINE ALTLINUXTEXTPRINT}
    {$ENDIF}
    
    // Database drivers to be used when performing a release
    {$IFDEF REPMANRELEASE}
    {$IFNDEF VER180}
     {$DEFINE USETNTUNICODE}
     {$DEFINE USEZEOS}
    {$ENDIF}
     {$DEFINE LINUXTEECHART}
     {$DEFINE TEECHARTPRO}
     {$DEFINE USEIBX}
    {$ENDIF}
    
    
    
    {$DEFINE USEVARIANTS}
    {$DEFINE USEBCD}
    
    
    // Delphi 5  compiler defines
    {$IFDEF VER130}
     {$DEFINE CHARPLACBOOL}
     {$UNDEF USEVARIANTS}
     {$UNDEF USEBCD}
     {$UNDEF USESQLEXPRESS}
     {$DEFINE MSWINDOWS}
    // {$UNDEF USEINDY}
    {$ENDIF}
    
    // Delphi 4  compiler defines
    {$IFDEF VER120}
     {$UNDEF DELPHI5UP}
     {$DEFINE CHARPLACBOOL}
     {$UNDEF USEVARIANTS}
     {$UNDEF USEBCD}
     {$UNDEF USESQLEXPRESS}
     {$DEFINE MSWINDOWS}
     {$DEFINE USEVCL}
     {$UNDEF USEIBX}
     {$UNDEF USEZEOS}
     {$DEFINE BUILDER4}
     {$DEFINE DEPHI4}
     {$UNDEF USEDESIGNEDITORS}
     {$UNDEF USEEXCEL}
     {$UNDEF USEADO}
     {$UNDEF USEINDY}
    {$ENDIF}
    
    
    //  Builder 4 compiler defines
    {$IFDEF VER125}
     {$UNDEF DELPHI5UP}
     {$DEFINE CHARPLACBOOL}
     {$UNDEF USEVARIANTS}
     {$UNDEF USEBCD}
     {$UNDEF USESQLEXPRESS}
     {$DEFINE MSWINDOWS}
     {$UNDEF USEIBX}
     {$UNDEF USEADO}
     {$DEFINE BUILDER4}
     {$UNDEF USEEXCEL}
     {$UNDEF USEINDY}
    {$ENDIF}
    
    // May be you want to enable TEECHART under Kylix
    // but take care it needs an X server running
    {$IFDEF MSWINDOWS}
     {$DEFINE USETEECHART}
    {$ENDIF}
    
    {$IFDEF LINUXTEECHART}
     {$IFDEF LINUX}
      {$DEFINE USETEECHART}
     {$ENDIF}
    {$ENDIF}
    
    {$IFDEF LINUX}
     {$DEFINE LINUXPRINTBUG}
     {$DEFINE KYLIX2}
    {$ENDIF}
    
    {$IFDEF LINUX}
    {$IFDEF VER140}
     {$UNDEF KYLIX2}
    // Vcl File Filters is a missing feature of CLX Dialogs in kylix 2 and Delphi 6
     {$DEFINE VCLFILEFILTERS}
    {$ENDIF}
    {$ENDIF}
    
    // Delphi 7
    {$IFDEF VER150}
     {$DEFINE VCLFILEFILTERS}
     {$DEFINE EMPTYCOMBOBUG}
     {$DEFINE ISDELPHI7}
     {$IFDEF MSWINDOWS}
      {$DEFINE BLOBSTREAMBUG}
    //  {$DEFINE QUERYLINKBUG}
     {$ENDIF}
    {$ENDIF}
    {$IFDEF CLR}
     {$DEFINE DOTNETD}
     {$DEFINE INDY10}
    {$ENDIF}
    // DOT NET PREVIEW
    {$IFDEF DOTNETD}
     {$UNDEF USEEVALHASH}
     {$DEFINE DOTNETDBUGS}
     {$DEFINE VCLFILEFILTERS}
     {$DEFINE MSWINDOWS}
     {$UNDEF USEZLIB}
     {$UNDEF USEADO}
     {$UNDEF USEDESIGNEDITORS}
    // {$UNDEF USESQLEXPRESS}
    // {$UNDEF USEIBX}
     {$UNDEF USEZEOS}
    // {$UNDEF USETEECHART}
    // {$UNDEF USEBDE}
    // {$DEFINE FORWEBAX}
    //  {$DEFINE QUERYLINKBUG}
    //  {$UNDEF USEINDY}
    // {$UNDEF USERPDATASET}
    // {$UNDEF USEREPORTFUNC}
    {$ENDIF}
    
    // Delphi 2005
    {$IFDEF VER170}
     {$DEFINE CHARPLACBOOL}
    {$ENDIF}
    
    // Windows qtintf.dll has a bug about selecting horz paper
    // If horz paper is set and print setup is called seems
    // to work ok
    {$IFDEF MSWINDOWS}
     {$DEFINE HORZPAPERBUG}
    {$ENDIF}
    
    
    
    {$DEFINE ISDELPHI}
    {$IFDEF FPC}
    // {$UNDEF ISDELPHI}
     {$MODE DELPHI}
    // {$UNDEF USEVARIANTS}
     {$UNDEF USEBCD}
     {$UNDEF USESQLEXPRESS}
     {$UNDEF USEINDY}
     {$UNDEF USEEVALHASH}
    {$ENDIF}
    
    // Disable databases if webaxcontrol
    {$IFDEF FORWEBAX}
     {$UNDEF USESQLEXPRESS}
     {$UNDEF USEIBX}
     {$UNDEF USEADO}
     {$UNDEF USEBDE}
     {$UNDEF USEIBO}
     {$UNDEF USEZEOS}
     {$UNDEF USEBCD}
     {$UNDEF USEREPORTFUNC}
     {$UNDEF USERPDATASET}
    {$ENDIF}
    
    
    
    // VCL and CLX sharing compatibility
    {$IFDEF MSWINDOWS}
     {$IFDEF VER140}
       {$DEFINE CHARPLACBOOL}
     {$ENDIF}
    // Removed VCL and CLX compatibility due to duplicate
    // resource in DBGrids when compiling apps containing both
    // {$DEFINE VCLANDCLX}
    // {$USECLXTEECHART also removed}
     // C++ Builder 6 does not allow VCL and CLX
     {$IFDEF BCB}
      {$UNDEF VCLANDCLX}
      {$IFDEF VER140}
       {$DEFINE USEVARIANTS}
       {$DEFINE CBUILDER6}
      {$ENDIF}
     {$ENDIF}
     {$IFNDEF BCB}
      {$IFNDEF FORWEBAX}
    //   {$DEFINE USECLXTEECHART}
      {$ENDIF}
     {$ENDIF}
    {$ENDIF}
    
    {$IFDEF USETEECHART}
     {$IFDEF LINUX}
      {$IFNDEF FORWEBAX}
       {$DEFINE USECLXTEECHART}
      {$ENDIF}
     {$ENDIF}
    {$ENDIF}
    
    {$IFDEF FORCECONSOLE}
     {$UNDEF USECLXTEECHART}
    {$ENDIF}
    "Estremamente originale e fantasioso" By darkiko;
    "allora sfiga crepuscolare mi sa che e' meglio di atmosfera serale" By NyXo;
    "per favore, già è difficile con lui" By fcaldera;
    "se lo apri te e invece di "amore" ci metti "lavoro", l'effetto è lo stesso" By fred84

  9. #9
    Nel compilare mi da errore sulla funzione "inttostring" anzi ora mi da errore anche su "tostring" e tutte le altre funzioni di conversione, da quando ho installato le librerie "indy"!

    Ad esempio ora su un programma mi da errore su questa riga:

    codice:
    label1.caption := tostring(12);
    Eppure sono certo che prima la funzione tostring andasse benissimo, oppure sbaglio io qualcosa?
    "Estremamente originale e fantasioso" By darkiko;
    "allora sfiga crepuscolare mi sa che e' meglio di atmosfera serale" By NyXo;
    "per favore, già è difficile con lui" By fcaldera;
    "se lo apri te e invece di "amore" ci metti "lavoro", l'effetto è lo stesso" By fred84

  10. #10
    Moderatore di Programmazione L'avatar di alka
    Registrato dal
    Oct 2001
    residenza
    Reggio Emilia
    Messaggi
    24,310
    Originariamente inviato da Neptune
    Riguardo a fuzzyreport non è che ci capisca molto del del file di configurazione
    Credo sia sufficiente aggiungere una parte così fatta:

    codice:
    {$IFDEF VER180}              // Delphi 2007
      {$DEFINE Delphi4}
      {$DEFINE Delphi5}  
      {$DEFINE OK_JPEG}
    {$ENDIF}
    La costante VER180, se non erro, è la stessa per BDS2006 e D2007 (in quanto è presente una compatibilità tra i due compilatori, che riportano la medesima versione principale).

    Probabilmente, dalla libreria FuzzyReport, occorre escludere anche una parte relativa a Quick Report, se quest'ultimo non è già installato.
    MARCO BREVEGLIERI
    Software and Web Developer, Teacher and Consultant

    Home | Blog | Delphi Podcast | Twitch | Altro...

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.