Post Reply 
INPUT question
06-02-2014, 09:01 PM (This post was last modified: 06-02-2014 09:02 PM by Mark Hardman.)
Post: #11
RE: INPUT question
(05-30-2014 02:11 PM)acmeanvil Wrote:  Is there documentation for the new input() function? Google has failed me so far.

Here's an example using the new positioning capabilities of the INPUT command:

Code:
EXPORT MyApp()
BEGIN
LOCAL LAT1,LON1;
LOCAL LAT2,LON2;
LOCAL SOG;
LOCAL UOM:="KNOTS";
INPUT({{LAT1,[0],{25,15,0}},
       {LON1,[0],{70,15,0}},
       {LAT2,[0],{25,15,1}},
       {LON2,[0],{70,15,1}},
       {SOG,[0],{25,15,3}},
       {UOM,[2],{70,15,3}}},
       "Enter Position",
       {"Latitude 1:","Longitude 1:","Latitude 2:","Longitude 2:","Speed OG:","UOM:"});
PRINT(LAT1);
PRINT(LON1);
END;

   

HTH

Mark Hardman

Ceci n'est pas une signature.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
INPUT question - Eddie W. Shore - 05-30-2014, 02:20 AM
RE: INPUT question - Mic - 05-30-2014, 05:24 AM
RE: INPUT question - Eddie W. Shore - 05-30-2014, 12:05 PM
RE: INPUT question - Tim Wessman - 06-02-2014, 02:12 PM
RE: INPUT question - acmeanvil - 05-30-2014, 02:11 PM
RE: INPUT question - Eddie W. Shore - 05-31-2014, 03:22 AM
RE: INPUT question - rprosperi - 05-31-2014, 07:17 PM
RE: INPUT question - Mark Hardman - 06-02-2014 09:01 PM
RE: INPUT question - Bob Frazee - 05-31-2014, 02:11 AM
RE: INPUT question - Dougggg - 06-02-2014, 05:00 PM
RE: INPUT question - Eddie W. Shore - 06-02-2014, 07:34 PM
RE: INPUT question - Mark Hardman - 06-02-2014, 10:30 PM
RE: INPUT question - slawek39 - 07-13-2014, 12:21 PM
RE: INPUT question - Giancarlo - 07-26-2014, 02:06 PM
RE: INPUT question - Giancarlo - 07-26-2014, 02:22 PM
RE: INPUT question - Giancarlo - 07-26-2014, 02:40 PM



User(s) browsing this thread: 1 Guest(s)