Post Reply 
Can app equations be indexed?
01-14-2017, 09:13 PM
Post: #6
RE: Can app equations be indexed?
Thanks for all of your suggestions! I have a much better understanding of the details now. I combined several of the suggestions in this snippet program, which others might find useful down the line:

Code:

EXPORT testapp()  
BEGIN 

  LOCAL a, list:=UPPER({"x+3y<=10","x+5y<=8","z=8x+10y"});
 
  a:="Advanced_Graphing";
  FOR I FROM 1 to SIZE(list) DO
    IF I<=10 THEN
      EXPR(a + ".V" + (I-1) + ":=" + 'list(I)'); // This populates app variables V0-V9
      EXPR(a+".CHECK(I-1)");                     // This CHECKS the corresponding Checkbox
    ELSE
      BREAK;
    END;
  END;    
   
END;
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Can app equations be indexed? - DrD - 01-13-2017, 04:45 PM
RE: Can app equations be indexed? - DrD - 01-13-2017, 05:46 PM
RE: Can app equations be indexed? - Han - 01-13-2017, 08:35 PM
RE: Can app equations be indexed? - DrD - 01-14-2017 09:13 PM
RE: Can app equations be indexed? - Han - 01-14-2017, 09:50 PM
RE: Can app equations be indexed? - DrD - 01-14-2017, 10:18 PM



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