HP Forums

Full Version: Question about "User Library".
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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".
Hello, Didier and thanks.

Cheers
Reference URL's