How I can start solver with the Num view ? - 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 I can start solver with the Num view ? (/thread-16179.html) |
How I can start solver with the Num view ? - fs5qc - 01-14-2021 06:24 PM Can you tell me how I can edit my program/App to start with the Num view. I tried startview but is not working START() BEGIN msgbox("VOL") END; //Symb—change to Num Symb() BEGIN startview(2,0) END; //Plot—disable Plot BEGIN END; //PlotSetup—disable PlotSetup() BEGIN END RE: How I can start solver with the Num view ? - C.Ret - 01-15-2021 09:53 AM Hi, One of the many ways available on the HP Prime is to initialize your application in the START() BEGIN ... END; code block : Edit the initial code generated when you save the built-in SOLVE application into your SolveVOL application. If needed, scratch your SolveVOL app. and restart from beginnning. Then press [shift] [ Program] and select 'SolveVOL(App)' and touche ( EDIT ) to modify your code application so it contains at least this : Code: START() // This section of code executed every time you select your SolveVOL application You can leave all the comments in place as a reminder of the different available sub-sections. You just have to remove comment delimiters // in the START() section of the code and type the few needed. Hope this help... Regards. C.Ret[/code] |