Ver Mensaje Individual
  #2  
Antiguo 29-08-2013
Avatar de TOPX
TOPX TOPX is offline
Miembro
 
Registrado: may 2008
Ubicación: Bogotá
Posts: 527
Reputación: 19
TOPX Va camino a la fama
Hola,

Osea, ¿algo así?
Código Delphi [-]
procedure TForm1.DataSource1StateChange(Sender: TObject);
begin
  case DataSource1.DataSet.State of
    dsInactive: ;
    dsBrowse: ;
    dsEdit: ;
    dsInsert: ;
    dsSetKey: ;
    dsCalcFields: ;
    dsFilter: ;
    dsNewValue: ;
    dsOldValue: ;
    dsCurValue: ;
    dsBlockRead: ;
    dsInternalCalc: ;
    dsOpening: ;
    else
    begin
    end;
  end;
end;
-
__________________
"constructive mind, destructive thoughts"
Responder Con Cita