nein glaub ich nicht
...
die records und klassen habe ich schon entfernt.. danke..
mein hauptproblem ist wie ich in die
db in der cdv.pas was speichere??bzw anspreche??
so kann ich zwar eine zeile hinzufügen, aber sie ist nicht in der
db..
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
begin
Hauptformular.CdAnzeige.Rowcount:=Hauptformular.CdAnzeige.Rowcount+1;
x:=Hauptformular.CdAnzeige.Rowcount-1;
Hauptformular.DB.CDDaten[2].Titel:= CDAnzeige.Cells[0,1];
Hauptformular.CDAnzeige.Cells[Ord(colInterpret),CDIndex+x]:= CDAnzeige.Cells[1,1];
Hauptformular.CDAnzeige.Cells[Ord(colTyp), CDIndex+x]:= CDAnzeige.Cells[2,1];
Hauptformular.CDAnzeige.Cells[Ord(colJahr), CDIndex+x]:= CDAnzeige.Cells[3,1];
Hauptformular.CDAnzeige.Cells[Ord(colKategorie),CDIndex+x]:= CDAnzeige.Cells[4,1];
Hauptformular.CDCurrent:= Hauptformular.CdAnzeige.Rowcount;
end.