Post Reply 
Input Box
05-29-2018, 10:36 PM
Post: #5
RE: Input Box
There is now way to control a displayed INPUT box, BUT I often use it in a loop to show the result below the fields, like that:

Code:

LOCAL ret;
REPEAT
  ret := INPUT(A, B, C);
  IF ret <> 0 THEN
    C := A+B;
  END;
UNTIL ret = 0;

Each time you click "Ok" the result is updated, if you click "Cancel" the box is closed.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Input Box - Tim O - 04-29-2018, 11:43 PM
RE: Input Box - cyrille de brébisson - 04-30-2018, 05:25 AM
RE: Input Box - Tim O - 04-30-2018, 06:15 PM
RE: Input Box - Tim O - 04-30-2018, 06:23 PM
RE: Input Box - pinkman - 05-29-2018 10:36 PM
RE: Input Box - BERNARD MICHAUD - 06-03-2018, 12:59 AM



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