Bonjour,

J'ai quelques applications en Delphi 4 et j'utilise Qick Report, le problème est que mes rapports fonctionne très bien sous Windows Xp mais pas sous Windows 7. J'ai le message d'erreur suivant à l'écran access violation at address 00003472.

Voici mon code pour mes rapports.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
QRMDFRappotRNC := TQRMDFRappotRNC.Create(Self);
    QRMDFRappotRNC.QRap.Close;
    QRMDFRappotRNC.QRap.ParamByName('LaDateDe').AsString := FormatDateTime('YYYY/MM/DD', TDTPDateDe.Date);
    QRMDFRappotRNC.QRap.ParamByName('LaDateA').AsString := FormatDateTime('YYYY/MM/DD', TDTPDateA.Date);
    QRMDFRappotRNC.QRap.ParamByName('Xfo').AsString := EdXfo.Text + '%';
    QRMDFRappotRNC.QRap.ParamByName('Att').AsString := EdAttribution.Text + '%';
    QRMDFRappotRNC.QRap.ParamByName('Secteur').AsString := Secteur;
    QRMDFRappotRNC.QRap.Open;
    QRMDFRappotRNC.QRRappotRNC.Preview;
Merci