Einzelnen Beitrag anzeigen

Tyrolean

Registriert seit: 3. Jul 2003
76 Beiträge
 
Delphi 7 Professional
 
#2

AW: cxGrid und Multiselect mit GroupByBox

  Alt 19. Aug 2010, 08:01
Schaue dir mal ForEachRow an. Ich habe zb folgenden Code:

Delphi-Quellcode:
procedure Txxx.Button1Click(Sender : TObject);
begin
   vMR.DataController.ForEachRow(True,DoForEachMitreisenden);
end;

procedure Txxx.DoForEachMitreisenden(ARowIndex: Integer; ARowInfo: TcxRowInfo);
var
   sGuid : String;
begin
  sGuid := varToStr(vMR.DataController.Values[ARowInfo.RecordIndex, vMRmgmGuid.Index]);
  // Irgendwas mit dem Datensatz tun
end;
  Mit Zitat antworten Zitat