View Single Post
  #2 (permalink)  
Old 01-07-2008, 08:02 AM
Erel's Avatar
Erel Erel is offline
Administrator
 
Join Date: Apr 2007
Posts: 15,689
Awards Showcase
Basic4ppc Founder 
Total Awards: 1
Default

I've updated the GPS4PPC source file and it now works properly.
The problem was that the struct named 'll' was not declared as a double variable and was later assigned a double array:
Code:
ll() = Converter.ChangeDatum(...)
The solution is to change the declaration to:
Code:
Dim Type(Lat,Lon) ll As Double
Reply With Quote