Re: locking GPS coordinates
Posted: January 15th, 2016, 4:19 pm
I know it could be a bit late, but also for everyone who needs it, you can use the demode() function.
For ex:
That means that it would only ask for gps read when you are in add mode, (to input new cases).
If you are in modify or verify mode, it will doesn´t ask for it. So the value wont change on that cases.
Regards to everyone.
Joshua Figueroa.
For ex:
Code: Select all
if demode() = 1 then
if gps(open)and gps(read, 60) then
LAT=gps(latitude);
LON=gps(longitude);
endif;
gps(close);
endif;
If you are in modify or verify mode, it will doesn´t ask for it. So the value wont change on that cases.
Regards to everyone.
Joshua Figueroa.