Post Reply 
INPUT & EVAL()
07-24-2018, 04:24 PM
Post: #3
RE: INPUT & EVAL()
Code:
EXPORT INPEVAL
BEGIN

 LOCAL Vars={{'X',[0],{30,20,1}},
             {'Y',[0],{30,20,2}},
             {'Z',{10,20,30},{30,20,3}}};

 INPUT(EVAL(Vars));
 INPUT(EVAL(Vars({1,2})));
 INPUT(EVAL(Vars({2,3})));

 Vars(0):={'W',[0],{30,20,1}};

 INPUT(EVAL(Vars({2,4})));

 INPUT(EVAL(CONCAT({Vars(0)},Vars({2,3}))));

 LOCAL VHelp:={"▇▶Help for X◀▇",
               "▇▶Help for Y◀▇",
               "▇▶Help for Z◀▇"};
 LOCAL VSelect:={2,3};

 INPUT(EVAL(Vars(VSelect)),{},{},VHelp(VSelect));

END;

Viga C | TD | FB
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
INPUT & EVAL() - Tyann - 07-24-2018, 10:37 AM
RE: INPUT & EVAL() - DrD - 07-24-2018, 10:56 AM
RE: INPUT & EVAL() - Carlos295pz - 07-24-2018 04:24 PM
RE: INPUT & EVAL() - Tyann - 07-24-2018, 04:36 PM



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