Ver Mensaje Individual
  #4  
Antiguo 05-09-2006
Avatar de JULIPO
JULIPO JULIPO is offline
Miembro
 
Registrado: ene 2006
Ubicación: Bogota Colombia
Posts: 187
Reputación: 19
JULIPO Va por buen camino
ya lo solucione con el siguiente codigo

Código Delphi [-]
procedure TVertel.BotonCualquieraClick(Sender: TObject);
var
  UnaFila: TFila;
  boton:tbutton;
begin
  boton:=tbutton(sender);
  UnaFila := Filas[boton.tag];
  ShowMessage(Format('El editor contiene: %s'#13'Y la etiqueta dice: %s',
    [UNAFila.A.Text, UNAFila.B.Caption]));
end;

Gracias nuevamente

Última edición por JULIPO fecha: 09-11-2006 a las 04:43:01.
Responder Con Cita