HP Forums
(50G) Feet and inches to feet and decimal conversion - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Software Libraries (/forum-10.html)
+--- Forum: General Software Library (/forum-13.html)
+--- Thread: (50G) Feet and inches to feet and decimal conversion (/thread-1886.html)



(50G) Feet and inches to feet and decimal conversion - CosmicTruth - 07-29-2014 11:50 PM

here is what I use:

Code:
'RUN'

%%HP: T(3)A(D)F(.);
\<< 0 "THIS APP TOTALS THE
RESULTS TO THE In2Ft
CONVERSION. YOU MUST
ENTER # FEET OR 0 TO 
BEGIN OR IT WILL
ERROR.
1->           FT or 0" 3 DISP 2 FREEZE CST MENU
\>>

the above displays a little help and loads 'cst' menu which must contain

Code:
'CST'

%%HP: T(3)A(D)F(.);
{ { "IN" \<< 12. / + \>> } 
{ "/2" \<< 2. / 12. / + \>> } 
{ "/4" \<< 4. / 12. / + \>> } 
{ "/8" \<< 8. / 12. / + \>> } 
{ "/16" \<< 16. / 12. / + \>> } 
{ "/32" \<< 32. / 12. / + \>> } }

So this is just a custom menu and a small program to invoke it, I keep them together in a Ft2In directory on my 50G.
have fun : )