AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Thema durchsuchen
Ansicht
Themen-Optionen

Rave Report erstellen

Ein Thema von Frank_M · begonnen am 11. Apr 2007 · letzter Beitrag vom 13. Apr 2007
Antwort Antwort
Frank_M

Registriert seit: 11. Apr 2007
4 Beiträge
 
#1

Re: Rave Report erstellen

  Alt 13. Apr 2007, 14:53
Na ja so gehts auch...

Die Const fliegen raus, jetzt komme ich endlcih weiter..


Delphi-Quellcode:


//#############################################################################
procedure TForm1.RvCustomConnectionGetCols(Connection: TRvCustomConnection);
begin
  with Connection do begin
     WriteField('Spalte4', dtString, 30, '', '');
     WriteField('Spalte5', dtString, 30, '', '');
     WriteField('Spalte6', dtString, 30, '', '');
  end;
end;


//#############################################################################
procedure TForm1.RvCustomConnectionOpen(Connection: TRvCustomConnection);
begin
    RaveZeile:=0;
end;


//#############################################################################
procedure TForm1.RvCustomConnectionNext(Connection: TRvCustomConnection);
begin
    inc(RaveZeile);
end;



//#############################################################################
procedure TForm1.RvCustomConnectionEOF(Connection: TRvCustomConnection;
  var Eof: Boolean);
begin
  Eof := (RaveZeile > 3);
end;


//#############################################################################
procedure TForm1.RvCustomConnectionGetRow(Connection: TRvCustomConnection);
const MyArray1: array[0..3] of string = ('Frank', 'Uwe', 'klaus', 'Tina');
const MyArray2: array[0..3] of string = ('Berlin', 'Hamburg', 'Kiel', 'Koblenz');
const MyArray3: array[0..3] of string = ('1', '2', '3', '4');
begin
  with Connection do begin
     Connection.WriteStrData(MyArray1[RaveZeile], '');
     Connection.WriteStrData(MyArray2[RaveZeile], '');
     Connection.WriteStrData(MyArray3[RaveZeile], '');
  end;
end;
  Mit Zitat antworten Zitat
Antwort Antwort


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 14:55 Uhr.
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz