Post Reply 
Is there a way to input a multi-selection-checkbox of arbitrary length? (SOLVED)
11-10-2015, 05:04 PM (This post was last modified: 11-10-2015 05:17 PM by StephenG1CMZ.)
Post: #2
RE: Is there a way to input a multi-selection-checkbox of arbitrary length?
I now have a syntax which generates the user interface I was aiming for...
but so far I am entering each list elements manually...
I'm hoping this can be simplified to simply use the whole list
Code:


 EXPORT BS()
 BEGIN
  LOCAL LST:={};
  LOCAL UTPLST:={'LST(1)','LST(2)','LST(3)','LST(4)'};
  LOCAL OKC,UTP;
  LOCAL TTL:={"//"};
  //LOCAL LBL:={"Select"};
  LOCAL HLP:="HH";

  LOCAL COMETS:={"ALL","Halley","Lewkowicz","The rest"};

  //MSGBOX(UTPLST);
  OKC:=INPUT({{UTPLST(1),1},{UTPLST(2),1},{UTPLST(3),1},{UTPLST(4),1}},TTL(1)​,COMETS,HLP,1,1);
 END;

EXPORT UN()
BEGIN
 BS()
END;

Stephen Lewkowicz (G1CMZ)
https://my.numworks.com/python/steveg1cmz
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Is there a way to input a multi-selection-checkbox of arbitrary length? - StephenG1CMZ - 11-10-2015 05:04 PM



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