Post Reply 
Question about "User Library".
01-19-2015, 10:01 PM
Post: #1
Question about "User Library".
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
Find all posts by this user
Quote this message in a reply
01-19-2015, 11:15 PM
Post: #2
RE: Question about "User Library".
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".
Find all posts by this user
Quote this message in a reply
01-19-2015, 11:26 PM
Post: #3
RE: Question about "User Library".
Hello, Didier and thanks.

Cheers
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)