HP Forums
Question about "User Library". - 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: Question about "User Library". (/thread-2885.html)



Question about "User Library". - John P - 01-19-2015 10:01 PM

Question about "User Library".

How can I, if at all, access "User Library". For ex. I have a progm. that shows when I press "ToolBox" -> "User" and that lists all my programs. When I click on one of the entries I get 'fly to the right' list that gives me all the prgms. contained in say "My program". My question is: how can I directly (without any copying and pasting etc.) deposit a program in "My program" named for ex. "New prgm." generated for ex. using Programs("New program"):="prgm.string". Is there some format for "New program" string to do that or maybe there is another way to do that. Thank you.

Cheers


RE: Question about "User Library". - Didier Lachieze - 01-19-2015 11:15 PM

Instead of:
Code:
Programs("New program"):="prgm.string";

you can do:
Code:
Programs("My program"):=Programs("My program")+"prgm.string";
This will append "prgm.string" at the end of "My program".


RE: Question about "User Library". - John P - 01-19-2015 11:26 PM

Hello, Didier and thanks.

Cheers