Ver Mensaje Individual
  #2  
Antiguo 03-09-2008
Avatar de tcp_ip_es
tcp_ip_es tcp_ip_es is offline
No confirmado
 
Registrado: ago 2003
Ubicación: Madrid
Posts: 635
Reputación: 0
tcp_ip_es Va por buen camino
si con vector te refieres al conjunto de datos que devuelve un query o tabla tu solucion sería....
Código Delphi [-]
Query.open; // o bien Table.open; si es tabla
Label1.caption:=inttostr(Query.Recordcount); // o bien Label1.caption:=inttostr(Table.Recordcount);
Responder Con Cita