Ver Mensaje Individual
  #5  
Antiguo 05-01-2008
silviodp silviodp is offline
Miembro
 
Registrado: may 2003
Ubicación: General Levalle, Argentina
Posts: 277
Reputación: 22
silviodp Va por buen camino
Indices en BD Access

Si yo estoy usando el IndexName, de la siguiente manera:
Código Delphi [-]
procedure TForm3.PageControl1Change(Sender: TObject);
begin
If Form3.PageControl1.ActivePageIndex=0 Then
 ModuloDatos.TblSocios.IndexName:='Id1'
 Else
  If Form3.PageControl1.ActivePageIndex=1 Then
   ModuloDatos.TblSocios.IndexName:='Id2'
  Else
  If Form3.PageControl1.ActivePageIndex=2 Then
   ModuloDatos.TblSocios.IndexName:='Id3'
end;
Responder Con Cita