Post Reply 
Common User Keys setup and why?
01-17-2014, 04:33 PM (This post was last modified: 01-17-2014 04:33 PM by Han.)
Post: #6
RE: Common User Keys setup and why?
By program names, do you mean that each of those key definitions reside in their own, separate source file? To reduce the number of entries in the program catalog, you can combine all of them into a single file (or program name, as you seem to call them). For example, in a single source file named USERKEYS you can have:

Code:

KEY K_Power()
BEGIN
RETURN "factor()";
END;


KEY K_Mul()
BEGIN
RETURN"expand()";
END;


KEY K_2()
BEGIN
RETURN"zeros()";
END;


KEY K_5()
BEGIN
RETURN "CONVERT()";
END;


KEY K_9()
BEGIN
RETURN "solve()";
END;

So all your user keys basically live in the same file.

Graph 3D | QPI | SolveSys
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Common User Keys setup and why? - pvrs - 01-17-2014, 03:47 PM
RE: Common User Keys setup and why? - Han - 01-17-2014 04:33 PM
RE: Common User Keys setup and why? - pvrs - 01-17-2014, 08:25 PM



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