Thema: Delphi Tabelle ordnen.

Einzelnen Beitrag anzeigen

NormanNG

Registriert seit: 1. Feb 2006
294 Beiträge
 
Delphi 2007 Professional
 
#2

Re: Tabelle ordnen.

  Alt 24. Nov 2007, 10:09
Hi,

evtl. ist die Query ja noch offen?
Versuch´s mal mit
Delphi-Quellcode:
q := 'SELECT Bezeichnung, Typ, V, A, Leistung, MHz, Gehäuse from Daten ORDER BY Bezeichnung ASC';
with Form1.ABSQuery1 do
  begin
    Close; <----
    DatabaseName := Form1.ABSDatabase1.DatabaseName;
    SQL.Text := q;
    open;
  end;
Gruß
Norman
  Mit Zitat antworten Zitat