Ver Mensaje Individual
  #7  
Antiguo 06-11-2017
jo3litro jo3litro is offline
Miembro
 
Registrado: dic 2013
Posts: 33
Reputación: 0
jo3litro Va por buen camino
Código Delphi [-]
Procedure TLocalizacionForm.LocationSensor1LocationChanged(Sender: TObject; Const OldLocation, NewLocation: TLocationCoord2D);
Begin
ENUSLat := NewLocation.Latitude.ToString(ffGeneral, 5, 2, TFormatSettings.Create('en-US'));
ENUSLong := NewLocation.Longitude.ToString(ffGeneral, 5, 2, TFormatSettings.Create('en-US'));
edLatitud.Text := ENUSLat;
edLongitud.Text := ENUSLong;

End;
Responder Con Cita