Ver Mensaje Individual
  #3  
Antiguo 20-05-2008
Avatar de Lord Delfos
Lord Delfos Lord Delfos is offline
Miembro
 
Registrado: ene 2008
Ubicación: Tandil, Argentina
Posts: 558
Reputación: 17
Lord Delfos Va por buen camino
Bueno, con arreglos se podría hacer algo así:

Código Delphi [-]

type Arr=array [1..2] of Smallint;

{. . .}

var p:^Arr;
     Rec:TFUsAct;
begin
  p:=@Rec;
  p^[1]:=3;
  p^[2]:=17;
  ShowMessage(IntToStr(Rec.Codigo)+' - '+IntToStr(Rec.numero));
end;

Cuya practicidad es discutible. Pero que funciona, funciona.

Saludongos.
Responder Con Cita