Post Reply 
possible problem INPUT dialog box
01-18-2016, 10:58 PM (This post was last modified: 01-18-2016 11:24 PM by compsystems.)
Post: #1
possible problem INPUT dialog box
Hello

within the INPUT dialog box, if you press any menu, [ESC], [OK], [EDIT] is blocked, also the input must be greater than 100

has been tested only in the emulator


PHP Code:
EXPORT p11_repeat_block()
BEGIN
  local age 
:= 0
  print(
"Enter a valid AGE [1, ...100]"); wait;
  
repeat 
    input
(age); wait;
    
until NOT((age 1) or (age 100));
  print(
age); wait;
  return 
"Done";
END
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
possible problem INPUT dialog box - compsystems - 01-18-2016 10:58 PM



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