Post Reply 
More than 1 ChooseBox in an INPUT instruction
11-09-2015, 09:24 AM (This post was last modified: 11-09-2015 09:25 AM by StephenG1CMZ.)
Post: #2
RE: More than 1 ChooseBox in an INPUT instruction
On the Android, As soon as you try to select the 1st/shorter list, the emulator exits.
Making the two lists the same length, all is well.
Code:

 EXPORT BS()
 BEGIN
  LOCAL OKC,UTP,UTP2;
  LOCAL TTL:={"//"};
  LOCAL LBL:={"unit","MORE"};
  LOCAL HLP:="HH";

  LOCAL UTYPES:={"bps","BPS"};
  LOCAL UTYPES2:=CONCAT(UTYPES,{"ONE MORE"});//CRASHES
  //LOCAL UTYPES2:=UTYPES;//WORKS

  OKC:=INPUT({{UTP,UTYPES},{UTP2,UTYPES2}},TTL,LBL,HLP,0,0);
  
 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: More than 1 ChooseBox in an INPUT instruction - StephenG1CMZ - 11-09-2015 09:24 AM



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