Ver Mensaje Individual
  #6  
Antiguo 06-05-2020
compuin compuin is offline
Miembro
 
Registrado: oct 2010
Posts: 214
Reputación: 14
compuin Va por buen camino
Estimados,

Finalmente lo resolvi asi:
Código Delphi [-]
var
  i:Integer;
  Louble;
  Bouble;
  Rouble;
  JDEouble;
  Long:array [1..12] of Double;
  Lati:array [1..12] of Double;

...

Begin

  for i:= 0 to 7 do
   begin
    PosPlanet(i,At_JDE,L,B,R);
      Long[i]:= L;
      Lati[i]:= B;
   end;

  //planetas
  for i := 1 to 12 do
   begin
      StringGrid1.Cells[0,i+0] := PlanetNames[i-1];
      StringGrid1.Cells[1,i+1] := ZodiacName(Long[i-1]);
      StringGrid1.Cells[2,i+1] := AngleToStr(Long[i-1]);
      StringGrid1.Cells[3,i+1] := AngleToStr(Lati[i-1]);
   end;

end;



Muchisimas gracias a todos los que me aportaron su valioso tiempo y conocimiento para poder avanzar en este proyecto!

Saludos
Responder Con Cita