Here is a short bit of code and I do not understand why I do not get the same answer. It's probably something simple, but I can not see where I have gone wrong. Help.
Thanks
Brian
CODE |
$Result1 = GCalc("S 43 08.875 E 147 51.020;21.05;3977665;T","Project") $Parameters = "S 43 08.875 E 147 51.020;21.05;3977665;T" $Result2 = GCalc($Parameters,"Project") $StartHere = "S 43 08.875 E 147 51.020" $Bearing = "21.05" $Distance = "3977665" $Units ="T" $Parameters = Quote($StartHere + ";" + $Bearing + ";" + $Distance + ";" + $Units) $Result3 = GCalc($Parameters,"Project") Pause msg= $Result1 $_NewLine $Result2 $_NewLine $Result3 |
Thanks
Brian