How to arrange labels within the INPUT command? - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: How to arrange labels within the INPUT command? (/thread-3486.html) |
How to arrange labels within the INPUT command? - Spybot - 03-26-2015 07:35 PM Hi Everyone! I'm trying to display some labels within the INPUT command... everything is fine, except for the fact that I need those labels to show on the right side of the box(just like in the LINEAR SOLVER APP) , I know the default is to show them on the left side of the box. So, Is there a way to show them to the right? Thank you. [attachment=1835] [attachment=1836] RE: How to arrange labels within the INPUT command? - toml_12953 - 03-26-2015 07:52 PM (03-26-2015 07:35 PM)Spybot Wrote: Does adding leading spaces work? RE: How to arrange labels within the INPUT command? - Spybot - 03-26-2015 11:07 PM This is my code: EXPORT TEST() BEGIN LOCAL A; INPUT({{A,[0],{50,10,2}}},"title","Label"); //NO help! END; the result is shown in screenshot #1 but I'd like to achieve something like the screenshot # 2 without PhotoShop. [attachment=1837] [attachment=1838] RE: How to arrange labels within the INPUT command? - DrD - 03-27-2015 11:38 AM Arranging labels independently may not be a built in feature of the INPUT command, but in a desparate act of dogged determination you could embellish this skeleton idea to possibly achieve what you are after, (this is just a 'food for thought' notion, not a fully working example): Code:
RE: How to arrange labels within the INPUT command? - Spybot - 03-27-2015 03:20 PM Hi Thank you for your answer DrD! I admit that it is a very clever and informative approach, it definitely shows more that I expected, now I got a clear notion not only on how the INPUT command really works at this moment, but also how other commands work. I appreciate you took the time to generate this answer. Spybot. RE: How to arrange labels within the INPUT command? - Lamas - 10-06-2017 09:51 AM Bonjour, I am looking to find a way to input some data in my defined screen with rect_p() and textout_p. I tried the code above, but it does not work as I want and require wait(0) ! Is it a way to accomplish easily this with INPUT. note : INPUT command bypass my defined screen with standard screen !... Thanks a lot for your attention. DL |