Ver Mensaje Individual
  #10  
Antiguo 04-03-2009
Avatar de Kipow
Kipow Kipow is offline
Miembro
 
Registrado: abr 2006
Ubicación: Guatemala
Posts: 329
Reputación: 19
Kipow Va por buen camino
Yo lo hago asi, en el evento CheckifBooleanField.
Código Delphi [-]

function Tfrm_MantTipoTransaccion.jvDBGTransaccionesCheckIfBooleanField(Grid: TJvDBGrid;
  Field: TField; var StringForTrue, StringForFalse: string): Boolean;
begin
  inherited;
  result := Field = dmINV.TTransaccionCOSTOS;
  StringForTrue := 'S';
  StringForFalse := 'N';
end;
Responder Con Cita